Skip to content

Commit

Permalink
fix tile borders
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidatorCoder2 committed Nov 10, 2021
1 parent 3b8637b commit 07b4822
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions lib/pages/home_page.dart
Expand Up @@ -73,6 +73,11 @@ class _HomePageState extends State<HomePage> {
? Brightness.dark
: Brightness.light,
leading: const AboutButton(),
border: Border(
bottom: BorderSide(
color:
_themeService.onBackground(context).withOpacity(0.1),
width: 1)),
automaticallyImplyLeading: false,
padding: EdgeInsetsDirectional.zero,
stretch: true,
Expand Down
4 changes: 2 additions & 2 deletions lib/widgets/notice_tile.dart
Expand Up @@ -224,8 +224,8 @@ class NoticeTile extends StatelessWidget {
border: Border(
bottom: BorderSide(
color:
_themeService.onBackground(context).withOpacity(0.2),
width: 0.5))),
_themeService.onBackground(context).withOpacity(0.1),
width: 1))),
child: ListTile(
isThreeLine:
(document?.college ?? '').toUpperCase().trim().isNotEmpty,
Expand Down

0 comments on commit 07b4822

Please sign in to comment.