madari-oss/lib/features/settings/screen/help_screen.dart
Madari Developers 16fe4a653f Project import generated by Copybara.
GitOrigin-RevId: 829626e92d5dba6a4586d1e7c4bd1615ec396e88
2025-01-02 18:46:26 +00:00

53 lines
1.4 KiB
Dart

import 'package:flutter/material.dart';
class HelpScreen extends StatelessWidget {
const HelpScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Help Center'),
),
body: ListView(
children: [
ListTile(
leading: const Icon(Icons.article),
title: const Text('FAQs'),
onTap: () {
// Navigate to FAQs
},
),
ListTile(
leading: const Icon(Icons.chat),
title: const Text('Contact Support'),
onTap: () {
// Open chat support
},
),
ListTile(
leading: const Icon(Icons.email),
title: const Text('Email Support'),
onTap: () {
// Open email support
},
),
ListTile(
leading: const Icon(Icons.phone),
title: const Text('Call Support'),
onTap: () {
// Make support call
},
),
const Padding(
padding: EdgeInsets.all(16),
child: Text(
'Support Hours:\nMonday - Friday: 9:00 AM - 5:00 PM\nWeekends: 10:00 AM - 3:00 PM',
style: TextStyle(color: Colors.grey),
),
),
],
),
);
}
}