如何添加商店链接和电子邮件并退出应用程序

问题描述 投票:0回答:1

如何添加商店链接和电子邮件并退出应用程序

Click here to see the codes

如何激活列表中的添加项

        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),
                ),
              ],
            )),

谢谢

我在等<<<

我尝试过但没有完成-

flutter navigation-drawer ontap
1个回答
0
投票

你必须在触摸或点击时添加一些事件,你可以使用GestureDetector

© www.soinside.com 2019 - 2024. All rights reserved.