Leon 2 years ago
parent
commit
bc7c7aa6e7
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/pages/clock/demoA.tsx

+ 2 - 2
src/pages/clock/demoA.tsx

@@ -13,7 +13,7 @@ export default function DemoA() {
     return (
         <View style={{ backgroundColor: 'blue', height: 800, width: 375 }} >
             <Text style={{ color: 'red', fontSize: 50 }}>hello world</Text>
-            <PickerView title="hhhh" itemStyle={{color:'#fff'}} indicatorStyle='height: 50px;' style='width: 100%; height: 300px;color:white' value={[0,1,2,3,4]} onChange={(e)=>{}}>
+            <PickerView title="hhhh" itemStyle={{color:'#fff',fonSize:10}} indicatorStyle='height: 50px;' style='width: 100%; height: 300px;color:white' value={[0,1,2,3,4]} onChange={(e)=>{}}>
                 <PickerViewColumn style={{color:'#fff'}}>
                     {years.map(item => {
                         return (
@@ -24,7 +24,7 @@ export default function DemoA() {
                 <PickerViewColumn>
                     {months.map(item => {
                         return (
-                            <View>{item}月</View>
+                            <View>{item}月12日</View>
                         )
                     })}
                 </PickerViewColumn>