mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 14:35:45 +00:00
async / await
This commit is contained in:
parent
2911bc359b
commit
f581c6a886
1 changed files with 10 additions and 6 deletions
|
|
@ -128,16 +128,20 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||
),
|
||||
);
|
||||
|
||||
//styleSheet = MarkdownStyleSheet.fromTheme(theme);
|
||||
styleSheet = MarkdownStyleSheet(
|
||||
//p: TextStyle(fontSize: 14.0, fontFamily: 'LinuxLibertine'),
|
||||
|
||||
styleSheet = MarkdownStyleSheet.fromTheme(theme).copyWith(
|
||||
tableColumnWidth: IntrinsicColumnWidth(),
|
||||
tableCellsPadding: EdgeInsets.all(0.2));
|
||||
|
||||
getItemWithId(this.id)
|
||||
/*getItemWithId(this.id)
|
||||
.then((item) => loadChildrenItems(item).then((items) => setItem(item)))
|
||||
.catchError((error) => print(error));
|
||||
.catchError((error) => print(error));*/
|
||||
loadItem();
|
||||
}
|
||||
|
||||
loadItem() async {
|
||||
var item = await getItemWithId(this.id);
|
||||
var items = await loadChildrenItems(item);
|
||||
setItem(item);
|
||||
}
|
||||
|
||||
final Widget svg = SvgPicture.asset(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue