etiennepinchon / magixjs

MagiXJS Framework
https://magixjs.com
Other
186 stars 17 forks source link

responsive does NOT work #4

Open kabinud opened 7 years ago

kabinud commented 7 years ago

Tried this

myText = new Text text: 'Hello' fontSize: 64 color: black

Below Phone, myText fontSize: 32 color: 'red'

dis not work

etiennepinchon commented 7 years ago

Hey! I tested your code, you forgot a comma after myText:

Below Phone, myText, fontSize: 32 color: 'red'

This should work fine ;) Etienne

kabinud commented 7 years ago

Still not responsive...try this

App.page = new Page backgroundColor: 'Black'

helloTxt = new Text text: 'Hello World!' width: auto fontSize: 164 fontWeight: 700 color: white spacing: 4

Below Phone, helloTxt, fontSize: 32 color: 'red'

helloTxt.center()