123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import 'package:flutter/material.dart';
- import 'package:empty/components/background.dart';
- import 'package:empty/components/bbs_list.dart';
- class FaqScreen extends StatefulWidget {
- @override
- _FaqScreenState createState() => _FaqScreenState();
- }
- class _FaqScreenState extends State<FaqScreen> {
- @override
- Widget build(BuildContext context) {
- return Background(
- image: Container(
- height: double.infinity,
- width: double.infinity,
- decoration: BoxDecoration(
- image: DecorationImage(
- image: AssetImage('assets/images/background_config.png'),
- fit: BoxFit.cover
- )
- ),
- ),
- child: Scaffold(
- backgroundColor: Colors.transparent,
- appBar: AppBar(
- title: Text('자주하는질문',style: TextStyle(fontSize: 18),),
- //centerTitle: true,
- backgroundColor: Colors.transparent,
- elevation: 0.0,
- ),
- body: Column(
- children: [
- Padding(
- padding: const EdgeInsets.only(top: 20,bottom: 20),
- child: Text('엠프티에 관한 궁금하신 사항을 확인하세요.',style: Theme.of(context).textTheme.bodyText1),
- ),
- Expanded(child: BbsListView(type:'faq',page: '1',size: '20',)),
- ],
- ),
- ),
- );
- }
- }
|