import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import '../widgets/logout_button.dart'; class HomePage extends ConsumerWidget { const HomePage({super.key}); @override Widget build(BuildContext context, WidgetRef ref) { return Scaffold( appBar: AppBar(title: const Text('Your phenomenal app')), body: const Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('Home Page'), Text("There's nothing much you can do, here"), LogoutButton(), ], ), ), ); } }