aboutsummaryrefslogtreecommitdiffstats
path: root/lib/presentation/screens/settings/settings_screens/voice_assistant/voice_assistant_screen.dart
blob: e1f38ae9896aef41c020a2b2c32cb0e06445c801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import 'package:flutter_ics_homescreen/export.dart';
import 'widgets/voice_assistant_content.dart';

class VoiceAssistantPage extends ConsumerWidget{
  const VoiceAssistantPage({super.key});

  static Page<void> page() => const MaterialPage<void>(child: VoiceAssistantPage());
  @override
  Widget build(BuildContext context,WidgetRef ref) {

    return Scaffold(
      body: Column(
        children: [
          CommonTitle(
            title: 'Voice Assistant',
            hasBackButton: true,
            onPressed: () {
              ref.read(appProvider.notifier).back();
            },
          ),
          Expanded(child: VoiceAssistantContent()),
        ],
      ),
    );
  }
}