1,609 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
2
answers
125
views
Is there any issue using Get snackbars & loaders and closing them using Get.back() in flutter sdk v3.38.3?
I recently upgraded to flutter v3.38.2 from v3.29.2 and found an issue that Get.back() & get.closeAllSnackbars() throwing some LateInitializer error for Controllers. Facing this issue post upgrade ...
-1
votes
1
answer
162
views
I'm trying to display a SnackBar using GetX in Flutter, but it is not showing. What could be the reason, and how can I fix it?
Get.snackbar(
easy.tr("missing_information"),
easy.tr("enter_email_password"),
backgroundColor: AppColors.redColor,
colorText: AppColors.whitetextColor,
snackPosition: ...
0
votes
1
answer
74
views
Re-render issue with Getx and ScreenUtil
This code shows the issue of re-renders caused when a TextField gets focussed (or when keyboard pops up) only in flutter web when opened on mobile.
If I remove screenutil I can delete the ...
0
votes
0
answers
70
views
My Flutter project using GetX no longer recognizes GetX reactive variables — the error: 'There isn't a setter named 'value' in class 'RxObjectMixin'
since last night I’ve been having the problem that my Flutter project can no longer be built because I’m getting compile errors in IntelliJ.
My code looks as follows
class GuestBookingDetailController ...
0
votes
0
answers
87
views
How to implement a memory-efficient infinite scroll with API pagination in Flutter using GetX?
I’m building a Flutter application where I need to fetch data from a paginated REST API and display it in a ListView.builder with infinite scrolling.
I’m using GetX for state management and controller ...
1
vote
2
answers
112
views
Getx Obx() is not updating on GridView, ListView and on BottomNavigationBar
I have added Obx() for updating my UI as per with the variables.obs. It did not work so after that I added variables.refresh() and update() for updating the onChanged() function. Still my UI is not ...
1
vote
1
answer
66
views
Gray Screen Issue In Flutter IOS Release Version
I'm building a flutter application using getx framework, where it will show a list of meeting rooms with image, title, amenities and credits when i run in my iphone under debug version, i'm able to ...
2
votes
1
answer
207
views
Flutter iOS deep linking pushes same screen twice when using GetX and app_links (works fine on Android)
I'm building a Flutter app using GetX for navigation and the app_links package for deep linking. The deep links work perfectly on Android, but on iOS, the same screen is pushed twice when opening a ...
1
vote
1
answer
703
views
What is the recommended folder structure for a Flutter project using GetX with MVC architecture? [closed]
I'm currently building a Flutter application and planning to use the GetX package for:
State management
Routing
Dependency injection
I would also like to follow the MVC (Model-View-Controller) ...
0
votes
1
answer
51
views
Flutter: Is there a way to memoize grid item inside a GridView
I have two grids of 16*16 displayed on my Page (I say this because GridView.builder helps when the grid items are not displayed).
the logic I want is whenever I tap a cell in the grid it paints with a ...
0
votes
0
answers
31
views
Managing GetXController Lifecycle
I am working on a Flutter project using GetX for state management, and we have a booking module that includes listing, creation, editing, updating, and deleting features.
For this module, we have ...
-1
votes
1
answer
68
views
Dynamically calculate 3 text fields that depend on each other like rate, amount and total in flutter with a custom keypad with getx
So i have these 3 fields in my finance app named amount,rate and total. I use controllers to fetch the values. Usually the rate given by the user. I wanted the amount field to change dynamically given ...
0
votes
2
answers
65
views
Flutter GetX Obx not updating text on button press
Below I have a very simple GetX project that should basically load some data on button press asynchronously. However, I would like the button to change from 'PRESS ME' to 'LOADING' whilst the data is ...
3
votes
1
answer
719
views
Flutter UI Rendering Issues on Samsung Devices
I'm encountering a persistent UI corruption issue specifically on Samsung phones. My Flutter app displays correctly on iPhones and other Android devices, but on Samsung devices, the UI exhibits ...
1
vote
1
answer
145
views
Does GetX dispose of controller data when navigating to a different screen with another controller?
I am using multiple GetX controllers in my Flutter app, and I’ve noticed that when I navigate to a different screen that uses a different GetxController, the data in the previous controller seems to ...