mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-07-01 04:07:53 +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(
|
return Drawer(
|
||||||
child: ListView(
|
child: ListView(
|
||||||
|
Reference in New Issue
Block a user