Skip to content

Commit

Permalink
1924-Sign-button-in-on-the-first-screen (#1932)
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin authored Mar 1, 2025
2 parents 0a8e3f1 + a9add4d commit faa0dfe
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions app/lib/pages/onboarding/device_selection.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import 'package:flutter/material.dart';
import 'package:friend_private/gen/assets.gen.dart';
import 'package:friend_private/pages/onboarding/wrapper.dart';

import 'package:friend_private/pages/persona/twitter/social_profile.dart';
import 'package:friend_private/utils/other/temp.dart';
import 'package:posthog_flutter/posthog_flutter.dart';


class DeviceSelectionPage extends StatefulWidget {
const DeviceSelectionPage({super.key});

Expand Down Expand Up @@ -107,6 +110,22 @@ class _DeviceSelectionPageState extends State<DeviceSelectionPage> with SingleTi
),
),
),
const SizedBox(
height: 24,
),
TextButton(
onPressed: () async {
routeToPage(context, const OnboardingWrapper());
},
child: const Text(
'Sign in',
style: TextStyle(
color: Colors.white,
fontWeight: FontWeight.w500,
fontSize: 16,
),
),
),
],
),
const Spacer(flex: 3),
Expand Down

0 comments on commit faa0dfe

Please sign in to comment.