新功能以响应本机并尝试为页面添加样式,我在上面添加了表格。我想更改页面的背景颜色,但似乎无法弄清楚是否有人可以帮我,而且在桌子上我也有一个按钮,但按钮稍微偏左(请参见屏幕截图),我尝试使用其他按钮位置选项,但没有任何变化,如何将按钮置于单元格中央?
谢谢
import { StyleSheet, View, Text, TouchableOpacity, Alert } from "react-native";
import { Table, TableWrapper, Row, Cell } from "react-native-table-component";
export default class ExampleFour extends Component {
constructor(props) {
super(props);
this.state = {
tableHead: ["Head", "Head2", "Head3", "Head4"],
tableData: [
["1", "2", "3", "4"],
["a", "b", "c", "d"],
["1", "2", "3", "4"],
["a", "b", "c", "d"]
]
};
}
_alertIndex(index) {
Alert.alert(`This is row ${index + 1}`);
}
render() {
const state = this.state;
const element = (data, index) => (
<TouchableOpacity onPress={() => this._alertIndex(index)}>
<View style={styles.btn}>
<Text style={styles.btnText}>button</Text>
</View>
</TouchableOpacity>
);
return (
<View style={styles.container}>
<Table borderStyle={{ borderWidth: 1 }}>
<Row
data={state.tableHead}
style={styles.head}
textStyle={styles.text}
/>
{state.tableData.map((rowData, index) => (
<TableWrapper key={index} style={styles.row}>
{rowData.map((cellData, cellIndex) => (
<Cell
key={cellIndex}
data={cellIndex === 3 ? element(cellData, index) : cellData}
textStyle={styles.text}
/>
))}
</TableWrapper>
))}
</Table>
</View>
);
}
}
const styles = StyleSheet.create({
container: { flex: 1, padding: 16, paddingTop: 30, backgroundColor: "#fff" },
head: { height: 40, backgroundColor: "#808B97" },
text: { margin: 6 },
row: { flexDirection: "row", backgroundColor: "white" },
btn: {
width: 58,
height: 18,
backgroundColor: "black",
borderRadius: 2
},
btnText: { textAlign: "center", color: "#fff" }
});
答案 0 :(得分:1)
更改backgroundColor
awk 'BEGIN{FS=OFS=","}{$19=gensub(/.+([0-9]{10})/,"\\1","1",$19)}1' file.csv
中心tha键
container: { flex: 1, padding: 16, paddingTop: 30, backgroundColor: "red" },// to change backgroundColor
您可以在此expo
中看到答案 1 :(得分:0)
要更改背景颜色,您可以将容器backgroundColor
(当前为"#fff"
的容器替换为所需的颜色,并向alignSelf
添加center
作为按钮
参见下面的代码:
import { StyleSheet, View, Text, TouchableOpacity, Alert } from "react-native";
import { Table, TableWrapper, Row, Cell } from "react-native-table-component";
export default class ExampleFour extends Component {
constructor(props) {
super(props);
this.state = {
tableHead: ["Head", "Head2", "Head3", "Head4"],
tableData: [
["1", "2", "3", "4"],
["a", "b", "c", "d"],
["1", "2", "3", "4"],
["a", "b", "c", "d"]
]
};
}
_alertIndex(index) {
Alert.alert(`This is row ${index + 1}`);
}
render() {
const state = this.state;
const element = (data, index) => (
<TouchableOpacity style={styles.btn} onPress={() => this._alertIndex(index)}>
<View style={styles.btn}>
<Text style={styles.btnText}>button</Text>
</View>
</TouchableOpacity>
);
return (
<View style={styles.container}>
<Table borderStyle={{ borderWidth: 1 }}>
<Row
data={state.tableHead}
style={styles.head}
textStyle={styles.text}
/>
{state.tableData.map((rowData, index) => (
<TableWrapper key={index} style={styles.row}>
{rowData.map((cellData, cellIndex) => (
<Cell
key={cellIndex}
data={cellIndex === 3 ? element(cellData, index) : cellData}
textStyle={styles.text}
/>
))}
</TableWrapper>
))}
</Table>
</View>
);
}
}
const styles = StyleSheet.create({
container: { flex: 1, padding: 16, paddingTop: 30, backgroundColor: "blue" },
head: { height: 40, backgroundColor: "#808B97" },
text: { margin: 6 },
row: { flexDirection: "row", backgroundColor: "white" },
btn: {
width: 58,
height: 18,
backgroundColor: "black",
borderRadius: 2,
alignSelf:'center'
},
btnText: { textAlign: "center", color: "#fff" }
});
对于纵向和横向模式,如果在flex模式下应该自动更改。试试看,希望对您有所帮助。毫无疑问