-
Notifications
You must be signed in to change notification settings - Fork 37
Documentation for 2.0.0-M5 release not yet deployed? #85
Comments
The We are going to update the documentation ASAP but my recommendation is upgrade to Some changes that you should do in your code: Use: myUi.run
myUi.get instead of runUi(myUi)
getUi(myUi) And now Tweaking, Snailing and Excerpting traits are in If you have some specific problem in your migration, please, let me know! Thanks! |
Hi @javipacheco! I'm trying to migrate to 2.0.0-M5 version but I'm having several problems. override def onCreate(savedInstanceState: Bundle): Unit = {
super.onCreate(savedInstanceState)
setContentView {
getUi {
layout[LinearLayout](
fragment[StartFragment].framed(Id.map, Tag.tag)
) <~ vertical
}
}
} Thanks! |
Try this: override def onCreate(savedInstanceState: Bundle): Unit = {
super.onCreate(savedInstanceState)
setContentView {
(layout[LinearLayout](
fragment[StartFragment].framed(Id.map, Tag.tag)
) <~ vertical).get
}
} You should use |
Fantastic, worked for me, thanks @javipacheco !! |
This week I started using Macroid and reading through the documentation. While using it yesterday I suddenly the 2.0.0-M4 release was not available anymore ... After browsing the repositories I noticed it did not exist anymore but instead there is a M5 release which has some breaking changes. After browsing through the documentation of the M5 release branch I have seen the documentation is already up-to-date but http://macroid.github.io/ does not yet contain the new documentation.
When will http://macroid.github.io/ be updated with the M5 documentation?
The text was updated successfully, but these errors were encountered: