Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

about_screen.dart 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import 'package:flutter/material.dart';
  2. import 'package:google_fonts/google_fonts.dart';
  3. import '../../background.dart';
  4. class AboutScreen extends StatefulWidget {
  5. const AboutScreen({Key? key}) : super(key: key);
  6. @override
  7. State<AboutScreen> createState() => _AboutScreenState();
  8. }
  9. class _AboutScreenState extends State<AboutScreen> {
  10. @override
  11. Widget build(BuildContext context) {
  12. return Scaffold(
  13. body: SingleChildScrollView(
  14. child: Column(
  15. children: <Widget>[
  16. Stack(
  17. children: [
  18. WavyHeader(),
  19. Container(
  20. margin: EdgeInsets.only(top: MediaQuery.of(context).size.height/6 - 20),
  21. padding: EdgeInsets.fromLTRB(20, 5, 25, 5),
  22. child: Row(
  23. mainAxisAlignment: MainAxisAlignment.end,
  24. crossAxisAlignment: CrossAxisAlignment.end,
  25. children: [
  26. Text(
  27. 'About\t\t',
  28. maxLines: 1,
  29. style: GoogleFonts.luckiestGuy(
  30. fontSize: 28,
  31. color: Color(0xFF4858A7),
  32. fontStyle: FontStyle.italic,
  33. ),
  34. ),
  35. Image.asset(
  36. 'assets/icons/menu/ic_info.png',
  37. width: 40,
  38. height: 40,
  39. ),
  40. ],
  41. )),
  42. ],
  43. ),
  44. ],
  45. )),
  46. );
  47. }
  48. }