mirror of
https://github.com/twonlyapp/twonly-app.git
synced 2026-05-24 23:52:11 +00:00
Some checks are pending
Flutter analyze & test / flutter_analyze_and_test (push) Waiting to run
32 lines
1 KiB
Dart
32 lines
1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:twonly/src/visual/views/onboarding/setup/components/next_button.comp.dart';
|
|
import 'package:twonly/src/visual/views/settings/privacy/user_discovery/components/user_discovery_setup.comp.dart';
|
|
|
|
class ShareYourFriendsSetupPage extends StatefulWidget {
|
|
const ShareYourFriendsSetupPage({required this.state, super.key});
|
|
|
|
final UserDiscoverySetupState state;
|
|
|
|
@override
|
|
State<ShareYourFriendsSetupPage> createState() =>
|
|
_ShareYourFriendsSetupPageState();
|
|
}
|
|
|
|
class _ShareYourFriendsSetupPageState extends State<ShareYourFriendsSetupPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
UserDiscoverySetupComp(
|
|
state: widget.state,
|
|
showOnlySpecificPage: UserDiscoveryPages.shareYourFriends,
|
|
),
|
|
const SizedBox(height: 60),
|
|
const NextButtonComp(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|