<itemvalue="Navigation.pushAndRemoveUntil() shortcut.<br><br> Push the given `page`, and then pop several pages in the stack until [predicate] returns true [id] is for when you are using nested navigation, as explained in documentation Obs: unlike other get methods, this one you need to send a function that returns the widget to the page argument, like this: Get.offUntil(GetPageRoute(page: () => HomePage()), predicate) [predicate] can be used like this: `Get.offUntil(page, (route) => (route as GetPageRoute).routeName == 'home')` to pop routes in stack until home, or also like this: `Get.until((route) => !Get.isDialogOpen())`, to make sure the dialog is closed"/>
<itemvalue="feat: tracking of post detail page; fix: reply to second level comment."/>
<itemvalue="feat: tracking of post detail page; fix: reply to second level comment."/>
<itemvalue="clear content of input bar after post submitted."/>
<itemvalue="clear content of input bar after post submitted."/>
<itemvalue="Initializes a new [FirebaseApp] instance by [name] and [options] and returns the created app. This method should be called before any usage of FlutterFire plugins. The default app instance can be initialized here simply by passing no "name" as an argument in both Dart & manual initialization flows."/>
<itemvalue="Initializes a new [FirebaseApp] instance by [name] and [options] and returns the created app. This method should be called before any usage of FlutterFire plugins. The default app instance can be initialized here simply by passing no "name" as an argument in both Dart & manual initialization flows."/>
@ -55,12 +56,11 @@
<itemvalue="sync chat closed status on chat page."/>
<itemvalue="sync chat closed status on chat page."/>
<itemvalue="Finds widgets whose current widget is the instance given by the argument. Sample code ```dart Suppose you have a button created like this: Widget myButton = Button( child: Text('Update') ); You can find and tap on it like this: tester.tap(find.byWidget(myButton)); ``` If the `skipOffstage` argument is true (the default), then this skips nodes that are [Offstage] or that are from inactive [Route]s."/>
<itemvalue="Finds widgets whose current widget is the instance given by the argument. Sample code ```dart Suppose you have a button created like this: Widget myButton = Button( child: Text('Update') ); You can find and tap on it like this: tester.tap(find.byWidget(myButton)); ``` If the `skipOffstage` argument is true (the default), then this skips nodes that are [Offstage] or that are from inactive [Route]s."/>
<itemvalue="Semantics Tester"/>
<itemvalue="Semantics Tester"/>
<itemvalue="Saves item by [key] to a storage. Value should be json encodable (`json.encode()` is called under the hood). After item was set to storage, consecutive [getItem] will return `json` representation of this item if [toEncodable] is provided, it is called before setting item to storage otherwise `value.toJson()` is called"/>