flutter-cupertino-store
flutter-cupertino-store copied to clipboard
I try to build and scroll on product list tab but got this eror. An Observatory debugger and profiler on Redmi Note 7 is available at: http://127.0.0.1:53064/hf-XcBGxc14=/ For a more...
In the Cupertino App Tutorial Step 5, outdated code is still shown. _See runApp: model: model should be changed to_ `builder: (context) => AppStateModel()..loadProducts(),` Following the outdated tutorial, I wasn't...
Wrong instruction in Step 7 (https://codelabs.developers.google.com/codelabs/flutter-cupertino/#7)
"Update the `build()` method in the `_SearchTabState` class." We are building the shopping cart tab so the `_ShoppingCartTabState` class, not the `_SearchTabState` class.
`Report a mistake` has wrong link. It should to be linked here instead of "https://github.com/flutter/website/issues".
``` return runApp( ChangeNotifierProvider( // NEW model: model, // NEW child: CupertinoStoreApp(), // NEW ), ); ``` `model:model` is reported as undefined parameter.
@Flutter 1.12.13+hotfix.5 From: https://codelabs.developers.google.com/codelabs/flutter-cupertino/#2 On the first run of this lab, an error shows up when calling `setPreferredOrientations()` in `main()` because `WidgetsFlutterBinding.ensureInitialized();` needs to be called first. That line of...