12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import 'package:flutter/material.dart';
- import 'package:empty/components/background.dart';
- class AboutScreen extends StatefulWidget {
- @override
- _AboutScreenState createState() => _AboutScreenState();
- }
- class _AboutScreenState extends State<AboutScreen> {
- @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('About Us',style: TextStyle(fontSize: 18),),
- //centerTitle: true,
- backgroundColor: Colors.transparent,
- elevation: 0.0,
- ),
- body: Center(
- child: InkWell(
- onTap: () {},
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Row(),
- Text('다붓컨설팅',style:Theme.of(context).textTheme.headline5,),
- Text('www.dabut.net',style:Theme.of(context).textTheme.bodyText1)
- ],
- ),
- ),
- )
- ),
- );
- }
- }
|