@@ -24,7 +24,10 @@ class SignUpPage extends HookConsumerWidget {
2424 /// {@macro harvest_hub.features.auth.presentation.auth.sign_up_page}
2525 ///
2626 /// Construct a new [SignUpPage] widget.
27- const SignUpPage ({super .key, AuthCallback ? onResult}) : _onResult = onResult;
27+ const SignUpPage ({
28+ super .key,
29+ AuthCallback ? onResult,
30+ }) : _onResult = onResult;
2831
2932 final AuthCallback ? _onResult;
3033
@@ -41,10 +44,13 @@ class SignUpPage extends HookConsumerWidget {
4144}
4245
4346class _DesktopSignUpPage extends HookConsumerWidget {
44- const _DesktopSignUpPage ({super .key, AuthCallback ? onResult})
45- : _onResult = onResult;
47+ const _DesktopSignUpPage ({
48+ super .key,
49+ AuthCallback ? onResult,
50+ }) : _onResult = onResult;
4651
4752 final AuthCallback ? _onResult;
53+
4854 @override
4955 Widget build (BuildContext context, WidgetRef ref) {
5056 final formKey = useGlobalKey <FormState >();
@@ -190,10 +196,13 @@ class _DesktopSignUpPage extends HookConsumerWidget {
190196}
191197
192198class _MobileSignUpPage extends HookConsumerWidget {
193- const _MobileSignUpPage ({super .key, AuthCallback ? onResult})
194- : _onResult = onResult;
199+ const _MobileSignUpPage ({
200+ super .key,
201+ AuthCallback ? onResult,
202+ }) : _onResult = onResult;
195203
196204 final AuthCallback ? _onResult;
205+
197206 @override
198207 Widget build (BuildContext context, WidgetRef ref) {
199208 final formKey = useGlobalKey <FormState >();
@@ -262,10 +271,9 @@ class _MobileSignUpPage extends HookConsumerWidget {
262271 'Welcome to Harvest Hub!' ,
263272 style: TextStyle (
264273 fontSize: 24 ,
265- color:
266- Theme .of (
267- context,
268- ).colorScheme.onPrimaryContainer,
274+ color: Theme .of (
275+ context,
276+ ).colorScheme.onPrimaryContainer,
269277 ),
270278 textAlign: TextAlign .center,
271279 ),
0 commit comments