Answers for "flutter getx dialog"

1

flutter getx dialog

GetMaterialApp( 
        home: Scaffold(
          appBar: AppBar(title: Text('Snackbar')),
          body: Center(
              child: ElevatedButton(
                  onPressed: () {
                    Get.defaultDialog();
                  },
                  child: Text('Button')),
          )
        )
      );
Posted by: Guest on September-17-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language