File tree Expand file tree Collapse file tree 1 file changed +15
-8
lines changed
Expand file tree Collapse file tree 1 file changed +15
-8
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments