123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- import 'package:flutter/material.dart';
- import 'package:go_router/go_router.dart';
- import 'package:namer_app/data.dart';
- import 'package:date_format/date_format.dart';
- var date = formatDate(DateTime.now(), [HH, ':', nn]);
- class ListBlockPage extends StatelessWidget {
- const ListBlockPage({Key? key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- backgroundColor: Color(0xff078C84),
- automaticallyImplyLeading: false,
- elevation: 0,
- toolbarHeight: 44,
- title: Text(
- date,
- style: TextStyle(color: Colors.white, fontSize: 15),
- ),
- actions: [
- Icon(
- Icons.signal_cellular_alt,
- color: Colors.white,
- ),
- Icon(
- Icons.wifi,
- color: Colors.white,
- ),
- RotatedBox(
- quarterTurns: -3,
- child: Icon(
- Icons.battery_std,
- color: Colors.white,
- ),
- )
- ],
- ),
- body: Stack(children: [
- Container(
- decoration: BoxDecoration(
- // color: Color(0xff078C84),
- gradient: LinearGradient(
- begin: Alignment.topCenter,
- end: Alignment.bottomCenter,
- colors: [
- Color(0xff078C84),
- Colors.white,
- ]),
- ),
- ),
- Container(
- decoration: BoxDecoration(
- color: Colors.white,
- borderRadius: BorderRadius.only(
- topLeft: Radius.circular(16),
- topRight: Radius.circular(16)),
- border: Border.all(color: Color(0xff078C84))),
- child: Column(
- children: [
- Container(
- margin: EdgeInsets.symmetric(vertical: 5),
- color: Color(0xff292D32).withOpacity(0.15),
- height: 1,
- width: 24,
- ),
- TopMenu(),
- GridView.builder(
- shrinkWrap: true,
- gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
- crossAxisCount: 4, childAspectRatio: 16 / 9),
- itemBuilder: (context, index) => Column(
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- children: [
- InkWell(
- onTap: () => context.go(
- "/list/listblock/search/${items[index]['type']}"),
- child: SizedBox(
- width: 60,
- height: 60,
- child: gambar(items[index]),
- ),
- ),
- Text(items[index]['type']),
- ],
- ),
- itemCount: 7,
- ),
- AvailableMenu(),
- GridView.builder(
- shrinkWrap: true,
- gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
- crossAxisCount: 4, childAspectRatio: 16 / 9),
- itemBuilder: (context, index) => Column(
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- children: [
- InkWell(
- onTap: () => context.go(
- "/list/listblock/search/${items[index]['type']}"),
- child: SizedBox(
- width: 60,
- height: 60,
- child: gambar(items[index]),
- ),
- ),
- Text(items[index]['type']),
- ],
- ),
- itemCount: items.length,
- ),
- ],
- ),
- ),
- ]));
- }
- Container gambar(items) {
- return Container(
- decoration: BoxDecoration(
- border: Border.all(color: items['color']),
- borderRadius: BorderRadius.all(Radius.circular(20)),
- color: items['color'].withOpacity(0.4)),
- padding: const EdgeInsets.all(5.0),
- child: Image.asset(
- items['image'],
- fit: BoxFit.cover,
- ),
- );
- }
- }
- class AvailableMenu extends StatelessWidget {
- const AvailableMenu({
- Key? key,
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: const EdgeInsets.all(5.0),
- child: Row(
- children: [
- Text(
- 'Available Menu',
- textAlign: TextAlign.left,
- style: TextStyle(
- fontWeight: FontWeight.bold, color: Color(0xff292D32)),
- ),
- ],
- ),
- );
- }
- }
- class TopMenu extends StatelessWidget {
- const TopMenu({
- Key? key,
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: const EdgeInsets.all(5.0),
- child: Row(
- children: [
- Text(
- 'Top Menu',
- textAlign: TextAlign.left,
- style: TextStyle(
- fontWeight: FontWeight.bold, color: Color(0xff292D32)),
- ),
- Spacer(),
- ElevatedButton(
- style: ElevatedButton.styleFrom(
- backgroundColor: Color(0xff078C84).withOpacity(0.1)),
- onPressed: () => context.go('/account'),
- child: Text(
- 'Customize',
- style: TextStyle(
- color: Color(0xff078C84), fontWeight: FontWeight.w300),
- ))
- ],
- ),
- );
- }
- }
|