modernCustomPreJoinPage function
Implementation
Widget modernCustomPreJoinPage({
PreJoinPageOptions? options,
required Credentials credentials,
}) {
return Scaffold(
backgroundColor: Colors.black,
body: Center(
child: GradientCard(
title: 'Welcome back, ${credentials.apiUserName}',
subtitle: 'Tap continue to enter the modern experience.',
child: ElevatedButton(
onPressed: () => options?.parameters.updateValidated(true),
child: const Text('Continue'),
),
),
),
);
}