Here is my Auth middleware: import 'package:donirajkrv/controllers/user_controller.dart'; import 'package:flutter/material.dart'; import 'package:get/get.dart';
I tried to change rowCount dynamically using Getx in flutter's Datatable DataSource, but it didn't change when I surrounded it with obx. If I check with ever ()
This is my home.dart code and I want to write an Authentication Middleware for my app. At the moment my main.dart code looks like this: void main() { Get.put(
I have a list of buttons in my app and each button is supposed to filter a list of items. All buttons have the same color, I want such that only one button has
I have created a flutter app and used getx package. But then I used it to show the snack bar, the function gets executed but the snack bar is not showing up. o
I've created a Paginated Datatable in flutter and using GetX Obx(() => PaginatedDataTable( source: controller.data.value, columns: getColumns
I want to Pass multiple data from one screen to another screen with Get package. Get.to(Second(), arguments: ["First data", "Second data"]);
I'm trying to implement search functionality in the list view builder But I don't have an idea to implement it. this is model class class Contacts { String? i
I am new to flutter. I just started using GetX flutter package. I am working on a ToDo list app. I am having trouble updating the widget state. What I have done
I have a simple Flutter app and I want to remove all previous routes but I want to do with GetX, How to do that? Now it works with Navigator.of(context).pushNam
I have a very strange issue for my current project using Flutter and getx package. Short: the Notifier is not working. On initState from a GetBuilder I try to u
void createUser(String email, String password) async { try { await _auth .createUserWithEmailAndPassword(email: email, password: password)
I am very new to Dart, and coding in general. I have produced this code after watching tutorials on YouTube. For the most part, I have been able to troubleshoot
I'm using getx state management for flutter. I read a few articles (blog.codemagic.io, itnext.io) that explain that we shouldn't use methods for widgets because
I'm using getx state management for flutter. I read a few articles (blog.codemagic.io, itnext.io) that explain that we shouldn't use methods for widgets because
I am new to flutter and I am using Getx package for state management and route management. I have tried many ways to give get default dialog full-screen width b
I want to change body of the widget depending on if the pressedBool is false or true. Here is GetxController I wrote. import 'package:get/state_manager.dart
I'm trying to implement a "Remember Me" functionality by using SharedPreferences. Unfortunately, no matter what I do, it doesn't seem like the login details are
I am having a RxList called todoData. On the basis of this list, a ListView.builder builds a list and in each list there is a button. When this button is clicke
I am using GetX. I need when the user delete the image from ui, the card delete. But nothing deleted from UI. if i pressed hot restart it deleted from the UI. T