2747 lines
180 KiB
Dart
2747 lines
180 KiB
Dart
import '/components/appbar_widget.dart';
|
|
import '/components/nav_bar1_widget.dart';
|
|
import '/flutterlib/flutter_animations.dart';
|
|
import '/flutterlib/flutter_theme.dart';
|
|
import '/flutterlib/flutter_util.dart';
|
|
import '/flutterlib/flutter_widgets.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/scheduler.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_animate/flutter_animate.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'bk1_model.dart';
|
|
export 'bk1_model.dart';
|
|
|
|
class Bk1Widget extends StatefulWidget {
|
|
const Bk1Widget({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_Bk1WidgetState createState() => _Bk1WidgetState();
|
|
}
|
|
|
|
class _Bk1WidgetState extends State<Bk1Widget> with TickerProviderStateMixin {
|
|
late Bk1Model _model;
|
|
|
|
final scaffoldKey = GlobalKey<ScaffoldState>();
|
|
|
|
final animationsMap = {
|
|
'containerOnActionTriggerAnimation': AnimationInfo(
|
|
trigger: AnimationTrigger.onActionTrigger,
|
|
applyInitialState: true,
|
|
effects: [
|
|
MoveEffect(
|
|
curve: Curves.easeInOut,
|
|
delay: 0.ms,
|
|
duration: 1240.ms,
|
|
begin: Offset(6.0, 0.0),
|
|
end: Offset(230.0, 0.0),
|
|
),
|
|
],
|
|
),
|
|
};
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_model = createModel(context, () => Bk1Model());
|
|
|
|
setupAnimations(
|
|
animationsMap.values.where((anim) =>
|
|
anim.trigger == AnimationTrigger.onActionTrigger ||
|
|
!anim.applyInitialState),
|
|
this,
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_model.dispose();
|
|
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
if (isiOS) {
|
|
SystemChrome.setSystemUIOverlayStyle(
|
|
SystemUiOverlayStyle(
|
|
statusBarBrightness: Theme.of(context).brightness,
|
|
systemStatusBarContrastEnforced: true,
|
|
),
|
|
);
|
|
}
|
|
|
|
context.watch<FFAppState>();
|
|
|
|
return GestureDetector(
|
|
onTap: () => _model.unfocusNode.canRequestFocus
|
|
? FocusScope.of(context).requestFocus(_model.unfocusNode)
|
|
: FocusScope.of(context).unfocus(),
|
|
child: Scaffold(
|
|
key: scaffoldKey,
|
|
backgroundColor: Color(0xFFEBEBE4),
|
|
drawer: Container(
|
|
width: 180.0,
|
|
child: Drawer(
|
|
elevation: 16.0,
|
|
child: Container(
|
|
width: 100.0,
|
|
height: 100.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(0.0, 80.0, 0.0, 0.0),
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Container(
|
|
width: 180.0,
|
|
height: 61.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('account');
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
15.0, 8.0, 0.0, 0.0),
|
|
child: Container(
|
|
width: 40.0,
|
|
height: 40.0,
|
|
decoration: BoxDecoration(
|
|
color: FlutterTheme.of(context)
|
|
.secondaryBackground,
|
|
shape: BoxShape.circle,
|
|
),
|
|
child: Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: ClipRRect(
|
|
borderRadius:
|
|
BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/company.svg',
|
|
width: 30.0,
|
|
height: 30.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
8.0, 8.0, 0.0, 0.0),
|
|
child: Text(
|
|
FFLocalizations.of(context).getText(
|
|
'48nm2606' /* ABC Ltd */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Container(
|
|
width: 180.0,
|
|
height: 61.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('account1');
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/Group_2640.svg',
|
|
width: 0.0,
|
|
height: 0.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
5.0, 0.0, 0.0, 0.0),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: Image.asset(
|
|
'assets/images/account.png',
|
|
width: 50.0,
|
|
height: 50.0,
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
8.0, 0.0, 0.0, 0.0),
|
|
child: Text(
|
|
FFLocalizations.of(context).getText(
|
|
'tlt2k1i2' /* Account */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: 180.0,
|
|
height: 61.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('tnc');
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/document.svg',
|
|
width: 0.0,
|
|
height: 0.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
16.0, 0.0, 0.0, 0.0),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/tnc.svg',
|
|
width: 30.0,
|
|
height: 30.0,
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
17.0, 0.0, 0.0, 0.0),
|
|
child: Text(
|
|
FFLocalizations.of(context).getText(
|
|
'lgp24y3h' /* T&C */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/Group_2640.svg',
|
|
width: 0.0,
|
|
height: 0.0,
|
|
fit: BoxFit.fitHeight,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: 180.0,
|
|
height: 61.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('policy');
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/Group_2640.svg',
|
|
width: 0.0,
|
|
height: 0.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
16.0, 0.0, 0.0, 0.0),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/pp.svg',
|
|
width: 30.0,
|
|
height: 30.0,
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
16.0, 0.0, 0.0, 0.0),
|
|
child: Text(
|
|
FFLocalizations.of(context).getText(
|
|
'7i2x2h20' /* Privacy
|
|
Policy */
|
|
,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: 180.0,
|
|
height: 61.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('language');
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/Group_2640.svg',
|
|
width: 0.0,
|
|
height: 0.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
16.0, 0.0, 0.0, 0.0),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/language.svg',
|
|
width: 30.0,
|
|
height: 30.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
15.0, 0.0, 0.0, 0.0),
|
|
child: Text(
|
|
FFLocalizations.of(context).getText(
|
|
'sksa8yea' /* Languages */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Container(
|
|
width: 180.0,
|
|
height: 61.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF009B9A),
|
|
),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('setting');
|
|
},
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/Group_2640.svg',
|
|
width: 0.0,
|
|
height: 0.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
16.0, 0.0, 0.0, 0.0),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/setting-2.svg',
|
|
width: 30.0,
|
|
height: 30.0,
|
|
fit: BoxFit.contain,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
15.0, 0.0, 0.0, 0.0),
|
|
child: Text(
|
|
FFLocalizations.of(context).getText(
|
|
'i8i4f0mv' /* Settings */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Colors.white,
|
|
fontSize: 16.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
appBar: PreferredSize(
|
|
preferredSize: Size.fromHeight(0.0),
|
|
child: AppBar(
|
|
backgroundColor: Color(0xFFE7E36B),
|
|
automaticallyImplyLeading: false,
|
|
actions: [],
|
|
centerTitle: false,
|
|
elevation: 0.0,
|
|
),
|
|
),
|
|
body: SafeArea(
|
|
top: true,
|
|
child: Stack(
|
|
children: [
|
|
SingleChildScrollView(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Stack(
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 100.0, 0.0, 100.0),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 16.0, 0.0, 0.0),
|
|
child: SingleChildScrollView(
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment.start,
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 0.0, 0.0, 8.0),
|
|
child: Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'k1gnxdg5' /* Bookkeeping Service subscripti... */,
|
|
),
|
|
textAlign: TextAlign.center,
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
color: Color(0xFF364257),
|
|
fontSize: 24.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 0.0, 12.0, 16.0),
|
|
child: Container(
|
|
width: 300.0,
|
|
height: 52.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFF1F4F8),
|
|
borderRadius:
|
|
BorderRadius.circular(20.0),
|
|
border: Border.all(
|
|
color: Color(0xFFE0E3E7),
|
|
width: 1.0,
|
|
),
|
|
),
|
|
child: Padding(
|
|
padding: EdgeInsets.all(2.0),
|
|
child: Stack(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
-1.0, -0.3),
|
|
child: InkWell(
|
|
splashColor:
|
|
Colors.transparent,
|
|
focusColor:
|
|
Colors.transparent,
|
|
hoverColor:
|
|
Colors.transparent,
|
|
highlightColor:
|
|
Colors.transparent,
|
|
onTap: () async {
|
|
if (animationsMap[
|
|
'containerOnActionTriggerAnimation'] !=
|
|
null) {
|
|
await animationsMap[
|
|
'containerOnActionTriggerAnimation']!
|
|
.controller
|
|
.forward(
|
|
from: 0.0);
|
|
}
|
|
|
|
context
|
|
.pushNamed('bk2');
|
|
},
|
|
child: Container(
|
|
width: 68.0,
|
|
height: 41.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color:
|
|
Color(0xFF009B9A),
|
|
boxShadow: [
|
|
BoxShadow(
|
|
blurRadius: 4.0,
|
|
color: Color(
|
|
0x430B0D0F),
|
|
offset: Offset(
|
|
0.0, 2.0),
|
|
)
|
|
],
|
|
borderRadius:
|
|
BorderRadius
|
|
.circular(
|
|
30.0),
|
|
shape: BoxShape
|
|
.rectangle,
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
FaIcon(
|
|
FontAwesomeIcons
|
|
.gripLinesVertical,
|
|
color:
|
|
Colors.white,
|
|
size: 20.0,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
).animateOnActionTrigger(
|
|
animationsMap[
|
|
'containerOnActionTriggerAnimation']!,
|
|
),
|
|
),
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Expanded(
|
|
child: Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
1.0, 0.0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
0.0,
|
|
10.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'f1sxugwc' /* Annually */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
color: Color(
|
|
0xFF009B9A),
|
|
fontSize:
|
|
32.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
SingleChildScrollView(
|
|
scrollDirection: Axis.horizontal,
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.max,
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(
|
|
10.0, 0.0, 15.0, 0.0),
|
|
child: Stack(
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 700.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFF4F7FA),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
0.0),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 262.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
40.59,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context).getText(
|
|
'qzi9iap9' /* Demi */,
|
|
),
|
|
style: FlutterTheme.of(context).bodyMedium.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 52.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
18.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'y3v2icpx' /* Monthly revenue under
|
|
HK$50K */
|
|
,
|
|
),
|
|
textAlign:
|
|
TextAlign.center,
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 26.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
97.43,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'z2n6douz' /* Annual Support */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'7wkfowd8' /* Annual review by Accountant */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'l8y2st9u' /* Numstation software */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'2fgemhut' /* Annual bookkeeping */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'e80non49' /* Annual management reports */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'xse6k2w2' /* Government &Tax Filings */,
|
|
),
|
|
style: FlutterTheme
|
|
.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'v7bzngfm' /* Unaudited Financial Statements */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
24.0,
|
|
0.0,
|
|
0.0),
|
|
child: InkWell(
|
|
splashColor: Colors
|
|
.transparent,
|
|
focusColor: Colors
|
|
.transparent,
|
|
hoverColor: Colors
|
|
.transparent,
|
|
highlightColor: Colors
|
|
.transparent,
|
|
onTap: () async {
|
|
context.pushNamed(
|
|
'bk_checkout');
|
|
},
|
|
child: Container(
|
|
width: 246.0,
|
|
height: 60.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: FlutterTheme
|
|
.of(context)
|
|
.secondaryBackground,
|
|
borderRadius:
|
|
BorderRadius
|
|
.circular(
|
|
32.5),
|
|
border:
|
|
Border.all(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
width: 3.0,
|
|
),
|
|
),
|
|
child: Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFF364257),
|
|
size: 18.0,
|
|
),
|
|
Flexible(
|
|
child:
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'jc0dhzep' /* Get Started */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 20.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(40.0, 230.0,
|
|
0.0, 0.0),
|
|
child: FFButtonWidget(
|
|
onPressed: () {
|
|
print(
|
|
'Button pressed ...');
|
|
},
|
|
text: FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'6ztzl5jz' /* HK$14,000 */,
|
|
),
|
|
options: FFButtonOptions(
|
|
width: 255.0,
|
|
height: 85.0,
|
|
padding:
|
|
EdgeInsets.all(0.0),
|
|
iconPadding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
color: Color(0xFF009B9A),
|
|
textStyle:
|
|
FlutterTheme.of(
|
|
context)
|
|
.titleSmall
|
|
.override(
|
|
fontFamily:
|
|
'Roboto',
|
|
color: Colors
|
|
.white,
|
|
fontSize: 30.0,
|
|
),
|
|
elevation: 0.0,
|
|
borderSide: BorderSide(
|
|
color:
|
|
Color(0xFFD6DEE9),
|
|
width: 10.0,
|
|
),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
48.7),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 0.0, 30.0, 0.0),
|
|
child: Stack(
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 700.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFF4F7FA),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
0.0),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 262.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
40.59,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context).getText(
|
|
'0o1d5pca' /* Short */,
|
|
),
|
|
style: FlutterTheme.of(context).bodyMedium.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 52.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
18.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'z88pgx29' /* Monthly revenue under
|
|
HK$100K... */
|
|
,
|
|
),
|
|
textAlign:
|
|
TextAlign.center,
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 26.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
97.43,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'1k7uvvvv' /* Annual Support */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'capx4t0y' /* Numstation software */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'jx9yogbb' /* Daily bookkeeping */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'm444gb39' /* Monthly management reports */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'6l5f6bwc' /* Government &Tax Filings */,
|
|
),
|
|
style: FlutterTheme
|
|
.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'1wiywe4q' /* Unaudited Financial Statements */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
44.0,
|
|
0.0,
|
|
0.0),
|
|
child: InkWell(
|
|
splashColor: Colors
|
|
.transparent,
|
|
focusColor: Colors
|
|
.transparent,
|
|
hoverColor: Colors
|
|
.transparent,
|
|
highlightColor: Colors
|
|
.transparent,
|
|
onTap: () async {
|
|
context.pushNamed(
|
|
'bk_checkout');
|
|
},
|
|
child: Container(
|
|
width: 246.0,
|
|
height: 60.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: FlutterTheme
|
|
.of(context)
|
|
.secondaryBackground,
|
|
borderRadius:
|
|
BorderRadius
|
|
.circular(
|
|
32.5),
|
|
border:
|
|
Border.all(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
width: 3.0,
|
|
),
|
|
),
|
|
child: Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFF364257),
|
|
size: 18.0,
|
|
),
|
|
Flexible(
|
|
child:
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'3u6tg4uc' /* Get Started */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 20.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(40.0, 230.0,
|
|
0.0, 0.0),
|
|
child: FFButtonWidget(
|
|
onPressed: () {
|
|
print(
|
|
'Button pressed ...');
|
|
},
|
|
text: FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'xrtj3tlo' /* HK$18,000 */,
|
|
),
|
|
options: FFButtonOptions(
|
|
width: 255.0,
|
|
height: 85.0,
|
|
padding:
|
|
EdgeInsets.all(0.0),
|
|
iconPadding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
color: Color(0xFF009B9A),
|
|
textStyle:
|
|
FlutterTheme.of(
|
|
context)
|
|
.titleSmall
|
|
.override(
|
|
fontFamily:
|
|
'Roboto',
|
|
color: Colors
|
|
.white,
|
|
fontSize: 30.0,
|
|
),
|
|
elevation: 3.0,
|
|
borderSide: BorderSide(
|
|
color:
|
|
Color(0xFFD6DEE9),
|
|
width: 10.0,
|
|
),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
48.7),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 0.0, 30.0, 0.0),
|
|
child: Stack(
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 700.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFF4F7FA),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
0.0),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 262.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
40.59,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context).getText(
|
|
'k336yebc' /* Tall */,
|
|
),
|
|
style: FlutterTheme.of(context).bodyMedium.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 52.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
18.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'e8neu2bx' /* Monthly revenue under
|
|
HK$300K... */
|
|
,
|
|
),
|
|
textAlign:
|
|
TextAlign.center,
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 26.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
97.43,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'w12fpqwk' /* Annual Support */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'mqqole4j' /* Numstation software */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'vnts854l' /* Daily bookkeeping */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
8.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'al4eaxxx' /* Monthly management reports */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'bb6023hw' /* Government &Tax Filings */,
|
|
),
|
|
style: FlutterTheme
|
|
.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
size: 18.0,
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'17mm2dux' /* Unaudited Financial Statements */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
44.0,
|
|
0.0,
|
|
0.0),
|
|
child: InkWell(
|
|
splashColor: Colors
|
|
.transparent,
|
|
focusColor: Colors
|
|
.transparent,
|
|
hoverColor: Colors
|
|
.transparent,
|
|
highlightColor: Colors
|
|
.transparent,
|
|
onTap: () async {
|
|
context.pushNamed(
|
|
'bk_checkout');
|
|
},
|
|
child: Container(
|
|
width: 246.0,
|
|
height: 60.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: FlutterTheme
|
|
.of(context)
|
|
.secondaryBackground,
|
|
borderRadius:
|
|
BorderRadius
|
|
.circular(
|
|
32.5),
|
|
border:
|
|
Border.all(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
width: 3.0,
|
|
),
|
|
),
|
|
child: Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFF364257),
|
|
size: 18.0,
|
|
),
|
|
Flexible(
|
|
child:
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'l5wc8hv5' /* Get Started */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 20.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(40.0, 230.0,
|
|
0.0, 0.0),
|
|
child: FFButtonWidget(
|
|
onPressed: () {
|
|
print(
|
|
'Button pressed ...');
|
|
},
|
|
text: FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'ummjfcdz' /* HK$22,000 */,
|
|
),
|
|
options: FFButtonOptions(
|
|
width: 255.0,
|
|
height: 85.0,
|
|
padding:
|
|
EdgeInsets.all(0.0),
|
|
iconPadding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
color: Color(0xFF009B9A),
|
|
textStyle:
|
|
FlutterTheme.of(
|
|
context)
|
|
.titleSmall
|
|
.override(
|
|
fontFamily:
|
|
'Roboto',
|
|
color: Colors
|
|
.white,
|
|
fontSize: 30.0,
|
|
),
|
|
elevation: 3.0,
|
|
borderSide: BorderSide(
|
|
color:
|
|
Color(0xFFD6DEE9),
|
|
width: 10.0,
|
|
),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
48.7),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(0.0, 0.0),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(
|
|
0.0, 0.0, 30.0, 0.0),
|
|
child: Stack(
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 700.0,
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFFF4F7FA),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
0.0),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Container(
|
|
width: 328.0,
|
|
height: 262.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
),
|
|
child: Column(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
40.59,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context).getText(
|
|
'wsv40l7u' /* Grange */,
|
|
),
|
|
style: FlutterTheme.of(context).bodyMedium.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 52.0,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
18.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'inwl3faf' /* Monthly revenue under
|
|
HK$300K... */
|
|
,
|
|
),
|
|
textAlign:
|
|
TextAlign.center,
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 26.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Column(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
97.43,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'n4esqjqa' /* Annual Support */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
20.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'qfpjd4b5' /* Custom */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
10.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'guon5ge5' /* Government &Tax Filings */,
|
|
),
|
|
style: FlutterTheme
|
|
.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily:
|
|
'Readex Pro',
|
|
fontSize:
|
|
24.0,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
20.0,
|
|
16.0,
|
|
0.0,
|
|
0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize.max,
|
|
children: [
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child: Text(
|
|
FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'aa0gh1fa' /* Custom */,
|
|
),
|
|
style: FlutterTheme.of(
|
|
context)
|
|
.bodyMedium,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
94.0,
|
|
0.0,
|
|
0.0),
|
|
child: InkWell(
|
|
splashColor: Colors
|
|
.transparent,
|
|
focusColor: Colors
|
|
.transparent,
|
|
hoverColor: Colors
|
|
.transparent,
|
|
highlightColor: Colors
|
|
.transparent,
|
|
onTap: () async {
|
|
context.pushNamed(
|
|
'bk_checkout');
|
|
},
|
|
child: Container(
|
|
width: 246.0,
|
|
height: 60.0,
|
|
decoration:
|
|
BoxDecoration(
|
|
color: FlutterTheme
|
|
.of(context)
|
|
.secondaryBackground,
|
|
borderRadius:
|
|
BorderRadius
|
|
.circular(
|
|
32.5),
|
|
border:
|
|
Border.all(
|
|
color: Color(
|
|
0xFFF3CF5D),
|
|
width: 3.0,
|
|
),
|
|
),
|
|
child: Align(
|
|
alignment:
|
|
AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Row(
|
|
mainAxisSize:
|
|
MainAxisSize
|
|
.max,
|
|
mainAxisAlignment:
|
|
MainAxisAlignment
|
|
.center,
|
|
children: [
|
|
Icon(
|
|
Icons.check,
|
|
color: Color(
|
|
0xFF364257),
|
|
size: 18.0,
|
|
),
|
|
Flexible(
|
|
child:
|
|
Padding(
|
|
padding: EdgeInsetsDirectional.fromSTEB(
|
|
5.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
child:
|
|
Text(
|
|
FFLocalizations.of(context)
|
|
.getText(
|
|
'83xu7qp5' /* Get Started */,
|
|
),
|
|
style: FlutterTheme.of(context)
|
|
.bodyMedium
|
|
.override(
|
|
fontFamily: 'Readex Pro',
|
|
fontSize: 20.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(
|
|
0.0, 0.0),
|
|
child: Padding(
|
|
padding: EdgeInsetsDirectional
|
|
.fromSTEB(40.0, 230.0,
|
|
0.0, 0.0),
|
|
child: FFButtonWidget(
|
|
onPressed: () {
|
|
print(
|
|
'Button pressed ...');
|
|
},
|
|
text: FFLocalizations.of(
|
|
context)
|
|
.getText(
|
|
'10kwoujj' /* Custom */,
|
|
),
|
|
options: FFButtonOptions(
|
|
width: 255.0,
|
|
height: 85.0,
|
|
padding:
|
|
EdgeInsets.all(0.0),
|
|
iconPadding:
|
|
EdgeInsetsDirectional
|
|
.fromSTEB(
|
|
0.0,
|
|
0.0,
|
|
0.0,
|
|
0.0),
|
|
color: Color(0xFF009B9A),
|
|
textStyle:
|
|
FlutterTheme.of(
|
|
context)
|
|
.titleSmall
|
|
.override(
|
|
fontFamily:
|
|
'Roboto',
|
|
color: Colors
|
|
.white,
|
|
fontSize: 30.0,
|
|
),
|
|
elevation: 3.0,
|
|
borderSide: BorderSide(
|
|
color:
|
|
Color(0xFFD6DEE9),
|
|
width: 10.0,
|
|
),
|
|
borderRadius:
|
|
BorderRadius.circular(
|
|
48.7),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, 1.0),
|
|
child: wrapWithModel(
|
|
model: _model.navBar1Model,
|
|
updateCallback: () => setState(() {}),
|
|
child: NavBar1Widget(),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(0.0, -1.0),
|
|
child: wrapWithModel(
|
|
model: _model.appbarModel,
|
|
updateCallback: () => setState(() {}),
|
|
child: AppbarWidget(),
|
|
),
|
|
),
|
|
Align(
|
|
alignment: AlignmentDirectional(1.07, -0.97),
|
|
child: Padding(
|
|
padding:
|
|
EdgeInsetsDirectional.fromSTEB(0.0, 550.0, 30.0, 0.0),
|
|
child: InkWell(
|
|
splashColor: Colors.transparent,
|
|
focusColor: Colors.transparent,
|
|
hoverColor: Colors.transparent,
|
|
highlightColor: Colors.transparent,
|
|
onTap: () async {
|
|
context.pushNamed('chatbox');
|
|
},
|
|
child: Container(
|
|
width: 71.0,
|
|
height: 71.0,
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(
|
|
colors: [Color(0xFFE7E63B), Color(0xFFC6E6D7)],
|
|
stops: [0.0, 1.0],
|
|
begin: AlignmentDirectional(-1.0, 0.0),
|
|
end: AlignmentDirectional(1.0, 0),
|
|
),
|
|
shape: BoxShape.circle,
|
|
),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8.0),
|
|
child: SvgPicture.asset(
|
|
'assets/images/message-2.svg',
|
|
width: 100.0,
|
|
height: 100.0,
|
|
fit: BoxFit.none,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|