자유해결사 6 years ago
parent
commit
7938b8438a
2 changed files with 26 additions and 10 deletions
  1. 2 0
      .vscode/settings.json
  2. 24 10
      src/pages/_7_List.js

+ 2 - 0
.vscode/settings.json

@@ -0,0 +1,2 @@
+{
+}

+ 24 - 10
src/pages/_7_List.js

@@ -8,7 +8,7 @@ export default (props)=>{
    console.log(" >>>>>>>>>>>>>: " , props.Pages);   
     return (
         <C.View cls="flx1 bgc-color-white"> 
-            <C.View cls="w100% ai-c flx1">   
+            <C.View cls="w100% ai-c flx1">     
                 <C.ScrollView cccls="ai-c">  
                     <C.View  cls="w80 br50 flx-row" >  
                         <C.Image source={props.Pages.img} resizeMode="contain"  cls="w14" /> 
@@ -43,14 +43,28 @@ export default (props)=>{
 
 const Imgs = ()=>{
     return (
-        <C.ImageBackground 
-            source={{uri : `https://picsum.photos/630/300?r=${(new Date).getTime()+Math.random()}` }}
-            cls="w45 h20 ma2"  
-            // resizeMode="contain"
-        >
-             <C.View cls="flx1 bgc-rgba-black-0_3 ai-e">
-                <C.EL.Icon type="entypo" name="lock" ccls="ma2" {...C.n2cls("color-white")}/>
-             </C.View>
-        </C.ImageBackground>
+        <C.View cls="w45">
+                <C.ImageBackground 
+                    source={{uri : `https://picsum.photos/630/300?r=${(new Date).getTime()+Math.random()}` }}
+                    cls="h20 mh2 mt2"  
+                    // resizeMode="contain"
+                >
+                    <C.View cls="flx1 bgc-rgba-black-0_3">
+                    <C.View cls="ai-e">
+                            <C.EL.Icon type="entypo" name="lock" ccls="ma2" {...C.n2cls("color-white")}/>
+                        </C.View>
+                        <C.View cls="ai-c">
+                            <C.EL.Icon type="entypo" name="controller-play" ccls="ma2" {...C.n2cls("color-white")}  {...C.n2cls("size10")}/>
+                        </C.View>
+                    </C.View>
+
+                    
+                </C.ImageBackground>
+                <C.View cls="flx1 ai-e mh2">  
+                    <C.Text> 
+                        10:00
+                    </C.Text>
+                </C.View>
+        </C.View>
     )
 }