Skip to content

Commit ef48447

Browse files
committed
Copyright
1 parent bab4a3f commit ef48447

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

lib/home_page.dart

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,23 @@ class _HomePageState extends State<HomePage> {
8989
}
9090

9191
Widget bottomCard() {
92-
return Row(
92+
return Column(
9393
mainAxisSize: MainAxisSize.min,
9494
children: [
95-
link("Privacy", () {
96-
Nav.navigateToPrivacy(context);
97-
}),
98-
horizontalSeparator(),
99-
link("Terms & Conditions", () {
100-
Nav.navigateToTermsAndConditions(context);
101-
}),
95+
const Text("Copyright © Commit 451. All rights reserved"),
96+
verticalSeparator(),
97+
Row(
98+
mainAxisSize: MainAxisSize.min,
99+
children: [
100+
link("Privacy", () {
101+
Nav.navigateToPrivacy(context);
102+
}),
103+
horizontalSeparator(),
104+
link("Terms & Conditions", () {
105+
Nav.navigateToTermsAndConditions(context);
106+
}),
107+
],
108+
)
102109
],
103110
);
104111
}

0 commit comments

Comments
 (0)