So my problem is very simple but I had a bit of trouble with it. I want my Text/ListTile to be at the very bottom of Drawer, it something like a copyright statement but the thing is I can't bring it to the bottom since it always place it below the last widget (if any).
my code:
const Expanded(
child: Align(
alignment: FractionalOffset.bottomCenter,
child: ListTile(
title: Text(
'Hak Cipta \u00a9 2022 Jabatan Perikanan Malaysia',
style: TextStyle(color: Colors.black45, fontSize: 12),
textAlign: TextAlign.center,
),
)),
)
I heard using Spacer() or Divider() will work but those only work for certain phone meaning if I make Spacer/Divider(top : 300), it will show at the very bottom of the Drawer for my phone only but not for different resolution phone than mine.
full code:
drawer: Container(
width: 230,
child: Drawer(
elevation: 0,
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.vertical(
bottom: Radius.circular(22),
top: Radius.circular(22),
),
),
child: ListView(
padding: EdgeInsets.zero,
children: <Widget>[
DrawerHeader(
child: Text(''),
decoration: BoxDecoration(color: Colors.blue[900]),
),
ListTile(
title: const Text('Profile Pengguna'),
onTap: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) =>
HomePage(username: widget.username2)));
},
),
ListTile(
title: const Text('Senarai Kursus'),
onTap: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) =>
KursusList(username: widget.username2)));
},
),
ListTile(
title: const Text('Transaksi Kursus'),
onTap: () {
Navigator.of(context).pushReplacement(MaterialPageRoute(
builder: (context) =>
TransaksiKursus(username: widget.username2)));
},
),
ListTile(
title: const Text('Log Keluar'),
onTap: () {
Navigator.of(context).pushAndRemoveUntil(
MaterialPageRoute(builder: (context) => LoginDemo()),
(Route route) => false);
},
),
const Spacer(),
const Expanded(
child: Align(
alignment: FractionalOffset.bottomCenter,
child: ListTile(
dense: true,
visualDensity: VisualDensity(vertical: -4),
title: Text(
'Hak Cipta \u00a9 2022 Jabatan Perikanan Malaysia',
style: TextStyle(color: Colors.black45, fontSize: 12),
textAlign: TextAlign.center,
),
)),
)
],
),
),
),
I received also Incorrect use of ParentDataWidget.
inside Debug Console. I dont know if this has anything to do with the problem I have right now but it worth mentioning
Try below code I think remove Spacer from your code. Add your extra code in my code
Result screen->
Refer this answer also