Skip to content

Commit

Permalink
feat: privacy text on top
Browse files Browse the repository at this point in the history
  • Loading branch information
VincePaulin committed Jun 6, 2024
1 parent 4479e34 commit 4e92305
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/pages/login/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,8 @@ class LoginController extends State<Login> {
padding: const EdgeInsets.all(12.0),
child: Column(
children: [
const PrivacyPolicyText(),
const SizedBox(height: 8),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white, backgroundColor: AppConfig.primaryColor,
Expand All @@ -266,8 +268,6 @@ class LoginController extends State<Login> {
node.meta.label!.text,
),
),
const SizedBox(height: 8),
const PrivacyPolicyText(),
],
),
);
Expand Down
4 changes: 2 additions & 2 deletions lib/pages/register/register.dart
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ class RegisterController extends State<Register> {
padding: const EdgeInsets.all(12.0),
child: Column(
children: [
const PrivacyPolicyText(),
const SizedBox(height: 8),
ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.white,
Expand All @@ -213,8 +215,6 @@ class RegisterController extends State<Register> {
node.meta.label!.text,
),
),
const SizedBox(height: 8),
const PrivacyPolicyText(),
],
),
);
Expand Down

0 comments on commit 4e92305

Please sign in to comment.