added profil and kurir page in pengirim, added pengiriman page at kurir, sort the api, design the ui back

This commit is contained in:
kicap1992
2022-06-26 00:47:09 +08:00
parent 330bfdeadb
commit dc2c23ffc3
42 changed files with 3654 additions and 297 deletions

View File

@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
class BounceScrollerWidget extends StatelessWidget {
const BounceScrollerWidget({Key? key, required this.children})
: super(key: key);
final List<Widget> children;
@override
Widget build(BuildContext context) {
return SizedBox(
height: MediaQuery.of(context).size.height * 0.9,
width: double.infinity,
child: ListView(
physics: const BouncingScrollPhysics(
parent: AlwaysScrollableScrollPhysics(),
),
children: children,
),
);
}
}