GSI - Employe Self Service Mobile
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.

52 lines
1.8 KiB

2 months ago
  1. import 'package:flutter/material.dart';
  2. import 'package:google_fonts/google_fonts.dart';
  3. import '../Menu/SlipGaji/background.dart';
  4. class NotificationCenter_Screen extends StatefulWidget {
  5. const NotificationCenter_Screen({super.key});
  6. @override
  7. State<NotificationCenter_Screen> createState() => _NotificationCenter_ScreenState();
  8. }
  9. class _NotificationCenter_ScreenState extends State<NotificationCenter_Screen> {
  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. 'Notification Center',
  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/ic_notif.png',
  37. width: 40,
  38. height: 40,
  39. ),
  40. ],
  41. )),
  42. ],
  43. ),
  44. ],
  45. )),
  46. );
  47. }
  48. }