How to add the store link and email and exit the application

50 Views Asked by At

How to add the store link and email and exit the application

Click here to see the codes

How to activate additions in the list

        drawer: const Drawer(
            child: Column(
              children: [
                ListTile(
                  title: Text("More App"),
                  textColor: Colors.black,
                  iconColor: Colors.black,
                  leading: Icon(Icons.email),
                  titleTextStyle: TextStyle(fontSize: 17),
                ),
                ListTile(
                  title: Text("Contact Us"),
                  textColor: Colors.black,
                  iconColor: Colors.black,
                  leading: Icon(Icons.email),
                  titleTextStyle: TextStyle(fontSize: 17),
                ),
                ListTile(
                  title: Text("Log Out"),
                  leading: Icon(Icons.logout),
                  textColor: Colors.black,
                  iconColor: Colors.black,
                  titleTextStyle: TextStyle(fontSize: 17),
                ),
              ],
            )),

thanks

i waiting <<<

i try but not done -

1

There are 1 best solutions below

3
On

You have to add some event when touching or clicking, you could use GestureDetector