mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 01:45:55 +08:00
Divider: Use the theme color
This commit is contained in:
@ -36,7 +36,12 @@ class AppDrawer extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
|
||||
var divider = Row(children: <Widget>[const Expanded(child: Divider())]);
|
||||
var divider = Row(children: <Widget>[
|
||||
Expanded(
|
||||
child: Divider(
|
||||
color: Theme.of(context).primaryColorLight,
|
||||
))
|
||||
]);
|
||||
|
||||
return Drawer(
|
||||
child: ListView(
|
||||
|
Reference in New Issue
Block a user