Nikatlas před 5 roky
rodič
revize
587f3a124f
2 změnil soubory, kde provedl 7 přidání a 4 odebrání
  1. 0 1
      dist/modules/Text/index.js
  2. 7 3
      modules/Text/index.js

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 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()
 }

Některé soubory nejsou zobrazeny, neboť je v těchto rozdílových datech změněno mnoho souborů