Nikatlas hace 5 años
padre
commit
587f3a124f
Se han modificado 2 ficheros con 7 adiciones y 4 borrados
  1. 0 1
      dist/modules/Text/index.js
  2. 7 3
      modules/Text/index.js

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 0 - 1
dist/modules/Text/index.js


+ 7 - 3
modules/Text/index.js

@@ -15,11 +15,13 @@ export default class TextComp extends Module {
 		let {
 			text,
 			color,
-			fontSize
+			fontSize,
+			fontFamily,
+			textAlign
 		} = this.props;
 		return 	(
 				<View>
-					<Text style={{color, fontSize}}>
+					<Text style={{color, fontSize,fontFamily,textAlign}}>
 						{text}
 					</Text>
 					{this.props.children}
@@ -31,5 +33,7 @@ export default class TextComp extends Module {
 TextComp.Inputs = {
 	text: new Types.Text().default("Enter Text"),
 	color: new Types.Text(),
-	fontSize: new Types.Integer().default(22)
+	fontSize: new Types.Integer().default(22),
+	fontFamily: new Types.Text(),
+	textAlign: new Types.Text()
 }

Algunos archivos no se mostraron porque demasiados archivos cambiaron en este cambio