|
@@ -38,7 +38,7 @@ class MyApp extends StatelessWidget {
|
|
|
// is not restarted.
|
|
|
primarySwatch: Colors.blue,
|
|
|
),
|
|
|
- home: MyHomePage(title: 'Flutter Demo Home Page'),
|
|
|
+ home: const MyHomePage(title: 'Flutter Demo Home Page'),
|
|
|
);
|
|
|
}
|
|
|
}
|
|
@@ -103,154 +103,167 @@ class _MyHomePageState extends State<MyHomePage> {
|
|
|
|
|
|
@override
|
|
|
Widget build(BuildContext context) {
|
|
|
- return FutureBuilder(
|
|
|
+ return FutureBuilder<bool>(
|
|
|
future: _loadi18nBook(),
|
|
|
- builder: (c, a) {
|
|
|
+ builder: (c, snapshot) {
|
|
|
+ if (snapshot.connectionState != ConnectionState.done ||
|
|
|
+ snapshot.data == null) {
|
|
|
+ return const FCenter(
|
|
|
+ child: FSizedBox(
|
|
|
+ width: 20,
|
|
|
+ height: 20,
|
|
|
+ child: FCircularProgressIndicator(),
|
|
|
+ ),
|
|
|
+ );
|
|
|
+ }
|
|
|
return Scaffold(
|
|
|
backgroundColor: Colors.white,
|
|
|
- body: Row(
|
|
|
- children: [
|
|
|
- if (_jsonStr.isNotEmpty && _demoImags.isNotEmpty)
|
|
|
- Expanded(
|
|
|
+ body: SizedBox(
|
|
|
+ child: Row(
|
|
|
+ children: [
|
|
|
+ if (_jsonStr.isNotEmpty && _demoImags.isNotEmpty)
|
|
|
+ Expanded(
|
|
|
child: ListView(
|
|
|
- shrinkWrap: true,
|
|
|
- children: [
|
|
|
- FReportEditPage(
|
|
|
- reporter: 'Loki',
|
|
|
- reportDate: DateTime.now(),
|
|
|
- jsonStr: _jsonStr,
|
|
|
- onSelect: onSelect,
|
|
|
- revoke: i18nBook.common.revoke.t,
|
|
|
- selectEntry: i18nBook.remedical.selectWord.t,
|
|
|
- selectImageHint:
|
|
|
- i18nBook.remedical.clickAndSelectImage.t,
|
|
|
+ shrinkWrap: true,
|
|
|
+ children: [
|
|
|
+ FReportEditPage(
|
|
|
+ reporter: 'Loki',
|
|
|
+ reportDate: DateTime.now(),
|
|
|
+ jsonStr: _jsonStr,
|
|
|
+ onSelect: onSelect,
|
|
|
+ revoke: i18nBook.common.revoke.t,
|
|
|
+ selectEntry: i18nBook.remedical.selectWord.t,
|
|
|
+ selectImageHint:
|
|
|
+ i18nBook.remedical.clickAndSelectImage.t,
|
|
|
+ ),
|
|
|
+ ],
|
|
|
),
|
|
|
- ],
|
|
|
- )),
|
|
|
- const SizedBox(width: 40),
|
|
|
- Container(
|
|
|
- decoration: _buildDecoration(),
|
|
|
- padding: _padding,
|
|
|
- alignment: Alignment.center,
|
|
|
- height: 800,
|
|
|
- width: 600,
|
|
|
- child: ListView(
|
|
|
- shrinkWrap: true,
|
|
|
- children: [
|
|
|
- Wrap(
|
|
|
- children: [
|
|
|
- ..._demoImags.map((element) {
|
|
|
- return Container(
|
|
|
- width: 150,
|
|
|
- height: 100,
|
|
|
- margin: const EdgeInsets.all(15),
|
|
|
- child: FContentImage(
|
|
|
- fileDataType: RemedicalFileDataTypeEnum.Image,
|
|
|
- terminalImage: TerminalImage(
|
|
|
- coverImageUrl: element,
|
|
|
- previewUrl: element,
|
|
|
- imageUrl: element,
|
|
|
- ),
|
|
|
- onTap: () => onSelect.emit(this, element),
|
|
|
- ),
|
|
|
- );
|
|
|
- })
|
|
|
- ],
|
|
|
- ),
|
|
|
- ],
|
|
|
- )),
|
|
|
- SizedBox(
|
|
|
- width: 400,
|
|
|
- child: Wrap(
|
|
|
- children: [
|
|
|
- MaterialButton(
|
|
|
- child: const Text('北京同仁堂'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.reload(
|
|
|
- '北京同仁堂',
|
|
|
- DateTime.now(),
|
|
|
- _aiJson,
|
|
|
- onSelect,
|
|
|
- i18nBook.common.revoke.t,
|
|
|
- i18nBook.remedical.selectWord.t,
|
|
|
- i18nBook.remedical.clickAndSelectImage.t);
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('testDefault'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.reload(
|
|
|
- '海孚结构化颈动脉',
|
|
|
- DateTime.now(),
|
|
|
- _jsonStr,
|
|
|
- onSelect,
|
|
|
- i18nBook.common.revoke.t,
|
|
|
- i18nBook.remedical.selectWord.t,
|
|
|
- i18nBook.remedical.clickAndSelectImage.t);
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('testPet'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.reload(
|
|
|
- '北京养老院模板',
|
|
|
- DateTime.now(),
|
|
|
- _petStr,
|
|
|
- onSelect,
|
|
|
- i18nBook.common.revoke.t,
|
|
|
- i18nBook.remedical.selectWord.t,
|
|
|
- i18nBook.remedical.clickAndSelectImage.t);
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('onClose'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.onClose.emit(this, null);
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('open'),
|
|
|
- onPressed: () {
|
|
|
- setState(() {});
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('testCustomTemplate'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.reload(
|
|
|
- 'testCustomTemplate',
|
|
|
- DateTime.now(),
|
|
|
- _testStr,
|
|
|
- onSelect,
|
|
|
- i18nBook.common.revoke.t,
|
|
|
- i18nBook.remedical.selectWord.t,
|
|
|
- '');
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('海弗'),
|
|
|
- onPressed: () {
|
|
|
- final reportMap = jsonDecode(_reportInfoStr);
|
|
|
- FReportInfo.instance.fromJson(reportMap);
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('testToJson'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.toJson();
|
|
|
- final items = FReportInfo.instance.jsonItems;
|
|
|
- final json = jsonEncode(items);
|
|
|
- print(json);
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('testDiagnostic'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.insertDiagnostic(
|
|
|
- '主动脉极度扩张,主动脉窦扩张形成主动脉窦瘤,主动脉瓣呈囊袋状。 心底短轴显示主动脉瓣的对合不良。 多普勒超声显示舒张期返流束,起自主动脉瓣射向左心室达心尖部。 二尖瓣与主动脉瓣均脱垂。左心室扩张,呈容量负荷过重。左心功能正常。',
|
|
|
- '符合冠心病间隔梗塞后的超声表现并伴室壁瘤形成,左心功能不全');
|
|
|
- }),
|
|
|
- MaterialButton(
|
|
|
- child: const Text('setMockDatas'),
|
|
|
- onPressed: () {
|
|
|
- FReportInfo.instance.setMockDatas.emit(this, '');
|
|
|
- }),
|
|
|
- ],
|
|
|
- ),
|
|
|
- ),
|
|
|
- ],
|
|
|
+ ),
|
|
|
+ const SizedBox(width: 40),
|
|
|
+ // Container(
|
|
|
+ // decoration: _buildDecoration(),
|
|
|
+ // padding: _padding,
|
|
|
+ // alignment: Alignment.center,
|
|
|
+ // height: 800,
|
|
|
+ // width: 600,
|
|
|
+ // child: ListView(
|
|
|
+ // shrinkWrap: true,
|
|
|
+ // children: [
|
|
|
+ // Wrap(
|
|
|
+ // children: [
|
|
|
+ // ..._demoImags.map((element) {
|
|
|
+ // return Container(
|
|
|
+ // width: 150,
|
|
|
+ // height: 100,
|
|
|
+ // margin: const EdgeInsets.all(15),
|
|
|
+ // child: FContentImage(
|
|
|
+ // fileDataType: RemedicalFileDataTypeEnum.Image,
|
|
|
+ // terminalImage: TerminalImage(
|
|
|
+ // coverImageUrl: element,
|
|
|
+ // previewUrl: element,
|
|
|
+ // imageUrl: element,
|
|
|
+ // ),
|
|
|
+ // onTap: () => onSelect.emit(this, element),
|
|
|
+ // ),
|
|
|
+ // );
|
|
|
+ // })
|
|
|
+ // ],
|
|
|
+ // ),
|
|
|
+ // ],
|
|
|
+ // )),
|
|
|
+ // SizedBox(
|
|
|
+ // width: 400,
|
|
|
+ // child: Wrap(
|
|
|
+ // children: [
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('北京同仁堂'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.reload(
|
|
|
+ // '北京同仁堂',
|
|
|
+ // DateTime.now(),
|
|
|
+ // _aiJson,
|
|
|
+ // onSelect,
|
|
|
+ // i18nBook.common.revoke.t,
|
|
|
+ // i18nBook.remedical.selectWord.t,
|
|
|
+ // i18nBook.remedical.clickAndSelectImage.t);
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('testDefault'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.reload(
|
|
|
+ // '海孚结构化颈动脉',
|
|
|
+ // DateTime.now(),
|
|
|
+ // _jsonStr,
|
|
|
+ // onSelect,
|
|
|
+ // i18nBook.common.revoke.t,
|
|
|
+ // i18nBook.remedical.selectWord.t,
|
|
|
+ // i18nBook.remedical.clickAndSelectImage.t);
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('testPet'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.reload(
|
|
|
+ // '北京养老院模板',
|
|
|
+ // DateTime.now(),
|
|
|
+ // _petStr,
|
|
|
+ // onSelect,
|
|
|
+ // i18nBook.common.revoke.t,
|
|
|
+ // i18nBook.remedical.selectWord.t,
|
|
|
+ // i18nBook.remedical.clickAndSelectImage.t);
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('onClose'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.onClose.emit(this, null);
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('open'),
|
|
|
+ // onPressed: () {
|
|
|
+ // setState(() {});
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('testCustomTemplate'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.reload(
|
|
|
+ // 'testCustomTemplate',
|
|
|
+ // DateTime.now(),
|
|
|
+ // _testStr,
|
|
|
+ // onSelect,
|
|
|
+ // i18nBook.common.revoke.t,
|
|
|
+ // i18nBook.remedical.selectWord.t,
|
|
|
+ // '');
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('海弗'),
|
|
|
+ // onPressed: () {
|
|
|
+ // final reportMap = jsonDecode(_reportInfoStr);
|
|
|
+ // FReportInfo.instance.fromJson(reportMap);
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('testToJson'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.toJson();
|
|
|
+ // final items = FReportInfo.instance.jsonItems;
|
|
|
+ // final json = jsonEncode(items);
|
|
|
+ // print(json);
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('testDiagnostic'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.insertDiagnostic(
|
|
|
+ // '主动脉极度扩张,主动脉窦扩张形成主动脉窦瘤,主动脉瓣呈囊袋状。 心底短轴显示主动脉瓣的对合不良。 多普勒超声显示舒张期返流束,起自主动脉瓣射向左心室达心尖部。 二尖瓣与主动脉瓣均脱垂。左心室扩张,呈容量负荷过重。左心功能正常。',
|
|
|
+ // '符合冠心病间隔梗塞后的超声表现并伴室壁瘤形成,左心功能不全');
|
|
|
+ // }),
|
|
|
+ // MaterialButton(
|
|
|
+ // child: const Text('setMockDatas'),
|
|
|
+ // onPressed: () {
|
|
|
+ // FReportInfo.instance.setMockDatas.emit(this, '');
|
|
|
+ // }),
|
|
|
+ // ],
|
|
|
+ // ),
|
|
|
+ // ),
|
|
|
+ ],
|
|
|
+ ),
|
|
|
),
|
|
|
);
|
|
|
});
|
|
@@ -265,24 +278,28 @@ class _MyHomePageState extends State<MyHomePage> {
|
|
|
color: Colors.white);
|
|
|
}
|
|
|
|
|
|
- Future<void> _loadi18nBook() async {
|
|
|
+ Future<bool> _loadi18nBook() async {
|
|
|
var theme = AppTheme();
|
|
|
try {
|
|
|
await FTheme.init(theme);
|
|
|
} catch (e) {
|
|
|
- FTheme.ins.switchTheme('lightness');
|
|
|
+ await FTheme.ins.switchTheme('lightness');
|
|
|
}
|
|
|
- FTheme.ins.switchTheme('lightness', true);
|
|
|
+ await FTheme.ins.switchTheme('lightness', true);
|
|
|
if (_isInitI18nbopok) {
|
|
|
- return;
|
|
|
+ return true;
|
|
|
}
|
|
|
|
|
|
const curLocale = Locale('zh', 'CN');
|
|
|
var bookOptions = [
|
|
|
FTrKeybookOption.ChineseOption,
|
|
|
];
|
|
|
- await FI18n.init((locale) => locale, bookOptions);
|
|
|
- await FI18n.load(curLocale);
|
|
|
+ try {
|
|
|
+ await FI18n.init((locale) => locale, bookOptions);
|
|
|
+ await FI18n.load(curLocale);
|
|
|
+ } catch (e) {}
|
|
|
+
|
|
|
_isInitI18nbopok = true;
|
|
|
+ return true;
|
|
|
}
|
|
|
}
|