修改输入框
This commit is contained in:
parent
2097e22113
commit
cba494dde3
|
@ -103,7 +103,7 @@ const ListItemWithCheckbox = ({
|
|||
}}
|
||||
style={{
|
||||
...tailwind("text-2xl text-white"),
|
||||
maxWidth: 200,
|
||||
// maxWidth: 200,
|
||||
minWidth: 150,
|
||||
}}
|
||||
/>
|
||||
|
@ -384,7 +384,10 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
(成为空间成员,可查看免费帖)
|
||||
</Text>
|
||||
</View>
|
||||
<View
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
spacePriceRef.current && spacePriceRef.current.focus();
|
||||
}}
|
||||
style={tailwind(
|
||||
"mt-2 px-4 py-3 h-12 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center"
|
||||
)}
|
||||
|
@ -402,19 +405,15 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
underlineColorAndroid="transparent"
|
||||
style={{
|
||||
...tailwind("text-white"),
|
||||
maxWidth: 250,
|
||||
// maxWidth: 250,
|
||||
minWidth: 150,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
spacePriceRef.current && spacePriceRef.current.focus();
|
||||
}}
|
||||
>
|
||||
<View>
|
||||
<Text style={tailwind("text-[#FFFFFF80] text-xs")}>点击编辑</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
<View style={tailwind("my-4")}>
|
||||
<View style={tailwind("flex flex-row justify-between items-center")}>
|
||||
|
@ -426,7 +425,10 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
(累计消费达成后解锁铁粉权益)
|
||||
</Text>
|
||||
</View>
|
||||
<View
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
ironFanPriceRef.current && ironFanPriceRef.current.focus();
|
||||
}}
|
||||
style={tailwind(
|
||||
"mt-2 px-4 py-3 h-12 rounded-lg bg-[#FFFFFF1A] flex-row justify-between items-center"
|
||||
)}
|
||||
|
@ -443,19 +445,15 @@ export default function SpacePaymentSetting({ navigation, route }) {
|
|||
underlineColorAndroid="transparent"
|
||||
style={{
|
||||
...tailwind("text-white"),
|
||||
maxWidth: 250,
|
||||
// maxWidth: 250,
|
||||
minWidth: 150,
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
<TouchableOpacity
|
||||
onPress={() => {
|
||||
ironFanPriceRef.current && ironFanPriceRef.current.focus();
|
||||
}}
|
||||
>
|
||||
<View>
|
||||
<Text style={tailwind("text-[#FFFFFF80] text-xs")}>点击编辑</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
</View>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
<View style={tailwind("my-4 flex-row justify-between items-center")}>
|
||||
<View style={tailwind("text-sm")}>
|
||||
|
|
Loading…
Reference in New Issue