My dearest getx author, when will you update
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 do not respect the model will be closed.
Describe the bug A clear and concise description of what the bug is.
Reproduction code NOTE: THIS IS MANDATORY, IF YOUR ISSUE DOES NOT CONTAIN IT, IT WILL BE CLOSED PRELIMINARY)
example:
void main() => runApp(MaterialApp(home: Home()));
class Home extends StatelessWidget {
final count = 0.obs;
@override
Widget build(context) => Scaffold(
appBar: AppBar(title: Text("counter")),
body: Center(
child: Obx(() => Text("$count")),
),
floatingActionButton: FloatingActionButton(
child: Icon(Icons.add),
onPressed: () => count.value++,
));
}
To Reproduce Steps to reproduce the behavior:
- Go to '...'
- Click on '....'
- Scroll down to '....'
- See error
Expected behavior A clear and concise description of what you expected to happen.
Screenshots If applicable, add screenshots to help explain your problem.
Flutter Version: Enter the version of the Flutter you are using
Getx Version: Enter the version of the Getx you are using
Describe on which device you found the bug: ex: Moto z2 - Android.
Minimal reproduce code Provide a minimum reproduction code for the problem
I’ve created a fork of it and am currently working on it. I’ve added many new features, including a Routes Generator, and everything will be updated and improved soon with community support as well.
A modern Flutter framework for state management, dependency injection, and route management. An actively maintained fork of GetX
https://pub.dev/packages/jetx
Based on which version?
I’ve created a fork of it and am currently working on it. I’ve added many new features, including a Routes Generator, and everything will be updated and improved soon with community support as well.
A modern Flutter framework for state management, dependency injection, and route management. An actively maintained fork of GetX
https://pub.dev/packages/jetx
version 5? also hwo will this work? any changes u made
I’ve created a fork of it and am currently working on it. I’ve added many new features, including a Routes Generator, and everything will be updated and improved soon with community support as well. A modern Flutter framework for state management, dependency injection, and route management. An actively maintained fork of GetX https://pub.dev/packages/jetx
version 5? also hwo will this work? any changes u made
Yes,
1- I have added, computed observables feature:
https://github.com/fathialamre/jetx?tab=readme-ov-file#computed-observables
2- Route Generator:
Key Benefits
- Type-Safe Navigation: Navigate with compile-time parameter checking instead of error-prone strings
- Auto-Generated Routes: Annotate your pages with @RoutablePage() and let the generator handle the rest
- Parameter Detection: Automatically categorizes parameters as URL params or complex arguments
- Zero Boilerplate: No manual parameter extraction or route configuration needed
https://github.com/fathialamre/jetx/blob/master/documentation/route_generator.md
There will be major additions soon. I will update the repo road-map.
Based on which version?
v.5