Files
numstation-flutter/lib/policy/tnc/tnc_widget.dart
2023-12-27 16:10:09 +08:00

275 lines
12 KiB
Dart

import '/backend/api_requests/api_calls.dart';
import '/flutterlib/flutter_theme.dart';
import '/flutterlib/flutter_util.dart';
import '/flutterlib/flutter_widgets.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_html/flutter_html.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:provider/provider.dart';
import 'tnc_model.dart';
export 'tnc_model.dart';
class TncWidget extends StatefulWidget {
const TncWidget({Key? key}) : super(key: key);
@override
_TncWidgetState createState() => _TncWidgetState();
}
class _TncWidgetState extends State<TncWidget> {
late TncModel _model;
final scaffoldKey = GlobalKey<ScaffoldState>();
@override
void initState() {
super.initState();
_model = createModel(context, () => TncModel());
}
@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),
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: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.max,
children: [
Container(
width: double.infinity,
height: 105.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),
),
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(40.0),
bottomRight: Radius.circular(40.0),
topLeft: Radius.circular(0.0),
topRight: Radius.circular(0.0),
),
),
child: Padding(
padding:
EdgeInsetsDirectional.fromSTEB(0.0, 35.0, 0.0, 0.0),
child: Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.center,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(8.0),
child: Image.asset(
'assets/images/numstat+black_1.png',
width: 61.0,
height: 61.0,
fit: BoxFit.cover,
),
),
],
),
),
),
Padding(
padding: EdgeInsetsDirectional.fromSTEB(0.0, 24.0, 0.0, 0.0),
child: Column(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.end,
children: [
Stack(
children: [
Align(
alignment: AlignmentDirectional(0.0, 0.0),
child: Padding(
padding: EdgeInsetsDirectional.fromSTEB(
0.0, 0.0, 0.0, 10.0),
child: Container(
width: () {
if (MediaQuery.sizeOf(context).width <
428.0) {
return 330.0;
} else if (MediaQuery.sizeOf(context).width >=
428.0) {
return 358.0;
} else {
return 340.0;
}
}(),
height: 700.0,
decoration: BoxDecoration(
color: FlutterTheme.of(context)
.secondaryBackground,
boxShadow: [
BoxShadow(
blurRadius: 4.0,
color: Color(0x33000000),
offset: Offset(0.0, 2.0),
)
],
borderRadius: BorderRadius.only(
bottomLeft: Radius.circular(0.0),
bottomRight: Radius.circular(19.1),
topLeft: Radius.circular(19.1),
topRight: Radius.circular(0.0),
),
),
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.max,
children: [
Padding(
padding: EdgeInsetsDirectional.fromSTEB(
0.0, 19.0, 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(
'x4h8uahz' /* Terms and Conditions */,
),
style:
FlutterTheme.of(context)
.bodyMedium
.override(
fontFamily: 'Roboto',
fontSize: 24.0,
),
),
),
],
),
),
FutureBuilder<ApiCallResponse>(
future: NumstationGroup
.termsAndConditionsCall
.call(),
builder: (context, snapshot) {
// Customize what your widget looks like when it's loading.
if (!snapshot.hasData) {
return Center(
child: SizedBox(
width: 50.0,
height: 50.0,
child:
CircularProgressIndicator(
valueColor:
AlwaysStoppedAnimation<
Color>(
FlutterTheme.of(context)
.info,
),
),
),
);
}
final htmlViewTermsAndConditionsResponse =
snapshot.data!;
return Html(
data: getJsonField(
htmlViewTermsAndConditionsResponse
.jsonBody,
r'''$.terms_and_conditions''',
).toString(),
);
},
),
],
),
),
),
),
),
Align(
alignment: AlignmentDirectional(-0.02, -1.32),
child: Padding(
padding: EdgeInsetsDirectional.fromSTEB(
0.0, 550.0, 0.0, 0.0),
child: FFButtonWidget(
onPressed: () async {
context.safePop();
},
text: FFLocalizations.of(context).getText(
'579lxsvw' /* Leave */,
),
options: FFButtonOptions(
width: 304.0,
height: 54.0,
padding: EdgeInsets.all(0.0),
iconPadding: EdgeInsetsDirectional.fromSTEB(
0.0, 0.0, 0.0, 0.0),
color: Color(0xFF9B0025),
textStyle: FlutterTheme.of(context)
.titleSmall
.override(
fontFamily: 'Roboto',
color: Colors.white,
fontSize: 20.0,
),
elevation: 3.0,
borderSide: BorderSide(
color: Colors.transparent,
width: 1.0,
),
borderRadius: BorderRadius.circular(40.0),
),
),
),
),
],
),
],
),
),
],
),
),
),
),
);
}
}