3
0
Nikatlas преди 5 години
родител
ревизия
05f8240980
променени са 2 файла, в които са добавени 6 реда и са изтрити 9 реда
  1. 0 0
      dist/modules/Text.js
  2. 6 9
      modules/Text.js

Файловите разлики са ограничени, защото са твърде много
+ 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)
 }

Някои файлове не бяха показани, защото твърде много файлове са промени