3
0
Nikatlas 5 vuotta sitten
vanhempi
säilyke
a9b222fef0
1 muutettua tiedostoa jossa 2 lisäystä ja 27 poistoa
  1. 2 27
      modules/Text.js

+ 2 - 27
modules/Text.js

@@ -12,15 +12,14 @@ export default class TextComp extends Module {
 	}
 
 	display() {
-		let { container , text } = this.props.style || ""
 		let {
 			color,
 			fontSize
 		} = this.props;
 		return 	(
-				<View style={container  || defaultStyle.container}>
+				<View>
 					<TextInput  
-						style={{...(text || defaultStyle.text), color, fontSize}} 
+						style={{color, fontSize}]} 
 						onChangeText={(text) => this.setState({
 							text
 						})}
@@ -33,30 +32,6 @@ export default class TextComp extends Module {
 }
 
 
-
-const defaultStyle = StyleSheet.create({
-	container:{
-		//border: 0.5px solid #E4E4E4;
-		
-		borderWidth:0.5,
-		borderColor:'#E4E4E4',
-		backgroundColor:'#FFFFFF'
-	},
-	text:{
-		color:'#707070',
-		textAlign:'center',
-		font:8,
-		opacity:0.8
-		/*
-	text-align: left;
-font: Compact Thin 8px/10px SF Display;
-letter-spacing: 0;
-color: #707070;
-opacity: 0.3;
-
-		*/
-	}
-})
 TextComp.Inputs = {
 	color: new Types.Text(),
 	fontSize: new Types.Integer().default(22)