Skip to content

Commit 48f79b6

Browse files
authored
feat: add bottom border to challenge appbar for extra clarity (#1577)
1 parent 631e117 commit 48f79b6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

mobile-app/lib/ui/views/learn/challenge/challenge_view.dart

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@ class ChallengeView extends StatelessWidget {
114114
);
115115
}
116116
})(),
117+
bottom: const PreferredSize(
118+
preferredSize: Size.fromHeight(1.0),
119+
child: Divider(
120+
height: 1,
121+
thickness: 1,
122+
color: FccColors.gray45,
123+
),
124+
),
117125
);
118126
}
119127

@@ -143,7 +151,7 @@ class ChallengeView extends StatelessWidget {
143151
return Container(
144152
decoration: const BoxDecoration(
145153
border: Border(
146-
top: BorderSide(color: Colors.white70),
154+
top: BorderSide(color: FccColors.gray45),
147155
),
148156
),
149157
padding: EdgeInsets.only(

0 commit comments

Comments
 (0)