1,627 questions
0
votes
0
answers
13
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
57
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
39
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 ...
2
votes
1
answer
160
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 ...
0
votes
0
answers
24
views
Flutter & DRF full stack - Flutter Error: type 'Null' is not a subtype of type 'String' in type cast
I'm using Djangorestframework (DRF) as backend and flutter with Getx package as frontend. in the DB i have a model that contains image and file fields.
in my models.py:
class Member(models.Model):
...
1
vote
2
answers
55
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 ...
0
votes
2
answers
69
views
How to get realtime updates with getx
I am fairly new to flutter. I am using Getx for state management.What is the best way to listen to firestore realtime updates? I use the RxListin an obx in the ui to build items using a ...
4
votes
1
answer
157
views
Flutter GetX updateLocale not refreshing app
I've created a global language controller, that's responsible for updating the locale across the whole app. However, I'm noticing that a freshly visited page after changing the language is being ...
0
votes
0
answers
28
views
GetX Navigation Issue: Unexpected null value in nested navigation
GetX Navigation Issue: Unexpected null value in nested navigation
Problem
I'm experiencing an issue with GetX nested navigation in my Flutter application. When trying to navigate to child routes ...
0
votes
1
answer
88
views
How to change the URL while using nested navigation in Flutter Getx without refreshing the top bar and drawer?
I am working on a Flutter app where I have a Drawer and a top AppBar.
The body content changes based on the navigation, but I want the URL to change accordingly when I navigate between pages (e.g., /...
0
votes
1
answer
33
views
In GetMaterial.router Get.offAll() is not working. how can I remove all previous routes
class MyApp extends StatefulWidget {
MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@...
0
votes
0
answers
35
views
Flutter Mobile Getx Get Storage's getToken() not working properly
Introduction, I have mobile app and I implement login part into my app and I save my token in local using get_storage because I can use my token after re open my app without login again. my approach ...
1
vote
2
answers
36
views
Access API NodeJS with express, by Flutter GetX, return response null
I try integration forntend Flutter with GetX, accessing API NodeJS framework Express. I'm create a simple Server:
import express from "express";
import cors from 'cors';
const PORT = 3000;
...
1
vote
1
answer
67
views
How do I call the inputs of nested artboard 'mouth' used in my main artboard in flutter?
I'm using Rive in my Flutter app for animations. I have a main artboard with a nested artboard called "mouth." I want to access the inputs (hear and sad) from both artboards, but I'm having ...
0
votes
0
answers
57
views
Flutter responsive UI with Getx is not automatically updated
I used Getx to Get the height/width and made a Dimensions class so that dimensions would stay responsive through out the whole app in any device with minimum code
the problem is Get.height and ...