12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import 'package:flutter/material.dart';
- import 'package:google_fonts/google_fonts.dart';
-
- import '../Menu/SlipGaji/background.dart';
-
- class NotificationCenter_Screen extends StatefulWidget {
- const NotificationCenter_Screen({super.key});
-
- @override
- State<NotificationCenter_Screen> createState() => _NotificationCenter_ScreenState();
- }
-
- class _NotificationCenter_ScreenState extends State<NotificationCenter_Screen> {
- @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(
- 'Notification Center',
- maxLines: 1,
- style: GoogleFonts.luckiestGuy(
- fontSize: 28,
- color: Color(0xFF4858A7),
- fontStyle: FontStyle.italic,
- ),
- ),
- Image.asset(
- 'assets/icons/ic_notif.png',
- width: 40,
- height: 40,
- ),
- ],
- )),
- ],
- ),
- ],
- )),
- );
- }
- }
|