1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import 'package:flutter/material.dart';
- import 'package:google_fonts/google_fonts.dart';
-
- import '../SlipGaji/background.dart';
-
- class AboutScreen extends StatefulWidget {
- const AboutScreen({Key? key}) : super(key: key);
-
- @override
- State<AboutScreen> createState() => _AboutScreenState();
- }
-
- class _AboutScreenState extends State<AboutScreen> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- body: SingleChildScrollView(
- child: Column(
- children: <Widget>[
- Stack(
- children: [
- WavyHeader(),
- Container(
- margin: EdgeInsets.only(top: MediaQuery.of(context).size.height/6 - 20),
- padding: EdgeInsets.fromLTRB(20, 5, 25, 5),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.end,
- crossAxisAlignment: CrossAxisAlignment.end,
- children: [
- Text(
- 'About\t\t',
- maxLines: 1,
- style: GoogleFonts.luckiestGuy(
- fontSize: 28,
- color: Colors.red,
- fontStyle: FontStyle.italic,
- ),
- ),
- Image.asset(
- 'assets/icons/menu/ic_info.png',
- width: 40,
- height: 40,
- ),
- ],
- )),
- ],
- ),
- ],
- )),
- );
- }
- }
|