getx icon indicating copy to clipboard operation
getx copied to clipboard

Open screens/snackbars/dialogs/bottomSheets without context, manage states and inject dependencies easily with Get.

Results 440 getx issues
Sort by recently updated
recently updated
newest added

``` class FlutterTest extends StatefulWidget { const FlutterTest({super.key}); @override State createState() => _FlutterTestState(); } class _FlutterTestState extends State { @override Widget build(BuildContext context) { return const GetMaterialApp(home: A()); } }...

How do we navigate from homePage( button with onTap action) to the below path with or without removing bottom navigation bar ex: ``` onTap(){ //Get.toNamed("/:categoryType/:subCategoryType/ProductDetails/:productID"); Get.toNamed("/vegetables/fresh/ProductDetails/6728"); //or Get.toNamed("/vegetables/fresh/6728"); } ```...

**ATTENTION: DO NOT USE THIS FIELD TO ASK SUPPORT QUESTIONS. USE THE PLATFORM CHANNELS FOR THIS. THIS SPACE IS DEDICATED ONLY FOR BUGS DESCRIPTION.** **Fill in the template. Issues that...

For example, there is a requirement, page A ->page B ->page C. Add a click event to the button on page C, remove it if page B exists, and then...

# **Flutter Version:** ``` Flutter 3.22.3 • channel stable • https://github.com/flutter/flutter.git Framework • revision b0850beeb2 (6 weeks ago) • 2024-07-16 21:43:41 -0700 Engine • revision 235db911ba Tools • Dart 3.4.4...

- 'GetPage' is from 'package:get/get_navigation/src/routes/get_route.dart' ('../.pub-cache/hosted/pub.dev/get-5.0.0-release-candidate-9.2/lib/get_navigation/src/routes/get_route.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'canPop'. canPop: canPop ?? this.canPop, ^^^^^^...

[web] Error: - 'GetPage' is from 'package:get/get_navigation/src/routes/get_route.dart' ('../.pub-cache/hosted/pub.dev/get-5.0.0-release-candidate-9.2/lib/get_navigation/src/routes/get_route.dart'). 2024-08-29T23:35:19Z [web] Try correcting the name to the name of an existing getter, or defining a getter or field named 'canPop'. 2024-08-29T23:35:19Z...

**Title: Improve Documentation Using GitHub Copilot or Claude.AI** **Description:** I hope you're doing well. I've been using the GetX package and I find it to be an incredibly useful tool...

**Describe the bug** When you register a page with name '/', then the initialRoute parameter of the GetMaterialApp() constructor is ignored. Furthermore no navigation to another page than the '/'...