Nikatlas il y a 5 ans
Parent
commit
05f8240980
2 fichiers modifiés avec 6 ajouts et 9 suppressions
  1. 0 0
      dist/modules/Text.js
  2. 6 9
      modules/Text.js

Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
dist/modules/Text.js


+ 6 - 9
modules/Text.js

@@ -13,26 +13,23 @@ export default class TextComp extends Module {
 
 	display() {
 		let {
+			text,
 			color,
 			fontSize
 		} = this.props;
 		return 	(
 				<View>
-					<TextInput  
-						style={{color, fontSize}]} 
-						onChangeText={(text) => this.setState({
-							text
-						})}
-        				value={this.state.text || 'Default Text'}/>
-						
-						{this.props.children}
-					
+					<Text style={{color, fontSize}}>
+						{text}
+					</Text>
+					{this.props.children}
 				</View>)
 	}
 }
 
 
 TextComp.Inputs = {
+	text: new Types.Text(),
 	color: new Types.Text(),
 	fontSize: new Types.Integer().default(22)
 }

Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff