cake_wallet/lib/src/screens/faq/faq_page.dart

168 lines
5.4 KiB
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:provider/provider.dart';
import 'package:cake_wallet/generated/i18n.dart';
import 'package:cake_wallet/src/stores/settings/settings_store.dart';
import 'package:cake_wallet/src/screens/base_page.dart';
import 'package:cake_wallet/palette.dart';
2020-01-04 19:31:52 +00:00
class FaqPage extends BasePage {
@override
2020-01-04 19:31:52 +00:00
String get title => S.current.faq;
@override
Color get backgroundColor => PaletteDark.historyPanel;
2020-01-04 19:31:52 +00:00
@override
Widget body(BuildContext context) => FaqForm();
}
class FaqForm extends StatefulWidget {
@override
FaqFormState createState() => FaqFormState();
}
class FaqFormState extends State<FaqForm> {
final addIcon = Icon(Icons.add, color: Colors.white);
final removeIcon = Icon(Icons.remove, color: Colors.green);
List<Icon> icons;
List<Color> colors;
bool isLoaded = false;
@override
Widget build(BuildContext context) {
return Container(
color: PaletteDark.historyPanel,
padding: EdgeInsets.only(top: 12),
child: Container(
color: PaletteDark.menuList,
child: FutureBuilder(
builder: (context, snapshot) {
final faqItems = jsonDecode(snapshot.data.toString()) as List;
2020-01-04 19:31:52 +00:00
if (snapshot.hasData) {
setIconsAndColors(faqItems.length);
}
return SingleChildScrollView(
child: ListView.separated(
shrinkWrap: true,
physics: NeverScrollableScrollPhysics(),
itemBuilder: (BuildContext context, int index) {
final itemTitle = faqItems[index]["question"].toString();
final itemChild = faqItems[index]["answer"].toString();
2020-01-04 19:31:52 +00:00
return ExpansionTile(
title: Padding(
padding: EdgeInsets.only(left: 8, top: 12, bottom: 12),
child: Text(
itemTitle,
style: TextStyle(
fontSize: 14,
fontWeight: FontWeight.w600,
color: colors[index]
),
),
),
trailing: Padding(
padding: EdgeInsets.only(right: 24),
child: Container(
width: double.minPositive,
child: Center(
child: icons[index]
),
),
),
backgroundColor: PaletteDark.menuHeader,
onExpansionChanged: (value) {
setState(() {
if (value) {
icons[index] = removeIcon;
colors[index] = Colors.green;
} else {
icons[index] = addIcon;
colors[index] = Colors.white;
}
});
},
children: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Expanded(
child: Container(
padding: EdgeInsets.only(
left: 24.0,
right: 24.0,
bottom: 8
),
child: Text(
itemChild,
style: TextStyle(
fontSize: 12,
color: Colors.white
),
),
))
],
)
],
);
},
separatorBuilder: (_, __) =>
Container(color: PaletteDark.mainBackgroundColor, height: 1.0),
itemCount: faqItems == null ? 0 : faqItems.length,
),
2020-01-04 19:31:52 +00:00
);
},
future: rootBundle.loadString(getFaqPath(context)),
),
),
2020-01-04 19:31:52 +00:00
);
}
void setIconsAndColors(int index) {
if (isLoaded) {
return;
}
icons = List.generate(index, (int i) => addIcon);
colors = List.generate(index, (int i) => Colors.white);
isLoaded = true;
}
2020-01-04 19:31:52 +00:00
String getFaqPath(BuildContext context) {
final settingsStore = Provider.of<SettingsStore>(context);
switch (settingsStore.languageCode) {
case 'en':
return 'assets/faq/faq_en.json';
case 'uk':
return 'assets/faq/faq_uk.json';
2020-01-04 19:31:52 +00:00
case 'ru':
return 'assets/faq/faq_ru.json';
case 'es':
return 'assets/faq/faq_es.json';
case 'ja':
return 'assets/faq/faq_ja.json';
case 'ko':
return 'assets/faq/faq_ko.json';
case 'hi':
return 'assets/faq/faq_hi.json';
case 'de':
return 'assets/faq/faq_de.json';
case 'zh':
return 'assets/faq/faq_zh.json';
case 'pt':
return 'assets/faq/faq_pt.json';
case 'pl':
return 'assets/faq/faq_pl.json';
case 'nl':
return 'assets/faq/faq_nl.json';
default:
return 'assets/faq/faq_en.json';
}
}
}