app/lib/screens/faq.dart

25 lines
582 B
Dart
Raw Normal View History

2022-05-23 02:23:07 +07:00
import 'package:flutter/material.dart';
import 'package:nekoya_app/components/faq_body.dart';
2022-05-23 02:23:07 +07:00
class FAQ extends StatefulWidget {
const FAQ({Key? key}) : super(key: key);
@override
State<FAQ> createState() => _FAQState();
}
class _FAQState extends State<FAQ> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xff1b1c1e),
appBar: AppBar(
title: const Text('FAQ'),
centerTitle: true,
backgroundColor: const Color(0xff212226),
),
body: const FAQBody());
2022-05-23 02:23:07 +07:00
}
}