v1.6.0
New Feature
- Implemented the feature to pop multiple screens at once.
Warning
Warning
This version includes breaking changes.
Please follow the steps below to update.
- As the order of arguments for
PageContainer.Push()
andModalContainer.Push()
has been changed, if you encounter errors, please correct the order or specify the argument name explicitly. SheetContainer.Show(int sheetId, bool playAnimation)
has been changed toSheetContainer.Show(string sheetId, bool playAnimation)
.SheetContainer.Show(string resourceKey, bool playAnimation)
has been changed toSheetContainer.ShowByResourceKey(string sheetId, bool playAnimation)
.
新機能
- まとめて戻る機能を実装しました
注意
Warning
このバージョンには破壊的変更が含まれます。
以下の手順に従いアップデートしてください。
PageContainer.Push()
とModalContainer.Push()
の引数の順番を変更したため、エラーが出たら正しい順番に修正するか、明示的に引数名を指定するように変更してくださいSheetContainer.Show(int sheetId, bool playAnimation)
をSheetContainer.Show(string sheetId, bool playAnimation)
に変更しましたSheetContainer.Show(string resourceKey, bool playAnimation)
をSheetContainer.ShowByResourceKey(string sheetId, bool playAnimation)
に変更しました