Commit 37f2bd5b authored by W.D.R.P. Sandeepa's avatar W.D.R.P. Sandeepa

Merge branch 'it18218640' into 'master'

create color interface

See merge request !27
parents 7a148437 0c2f8945
import { useNavigation } from "@react-navigation/native"; import { useNavigation } from "@react-navigation/native";
import React from "react"; import React from "react";
import {Text, TouchableOpacity, StyleSheet, View, Image} from 'react-native' import {Text, TouchableOpacity, StyleSheet, View, Image} from 'react-native'
export default function ColorActivity(){
return(
<TouchableOpacity style={styles.card}>
<View style={[{flexDirection: "row"}]}>
<View style={styles.cardImage}>
<Image source={require("../assets/login/bb.jpg")}
style={{width: 100, height: 100, borderRadius: 30}}></Image>
</View>
<View style={{flex: 0.6}}>
<Text style={styles.cardTitle}>First Activity</Text>
<Text style={styles.cardLocation}>Location</Text>
<Text style={styles.cardDescription}>Description</Text>
</View>
</View>
</TouchableOpacity>
)
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment