Fix appBar error

This commit is contained in:
vjrj 2018-07-13 11:57:57 +02:00
parent 6064aa703b
commit acf95b699d

View file

@ -36,7 +36,7 @@ class _MarkdownPageState extends State<MarkdownPage> {
}); });
}); });
return new Scaffold( return new Scaffold(
appBar: new SliverAppBar(title: new Text(title ?? '')), appBar: new AppBar(title: new Text(title ?? '')),
body: new Markdown(data: pageData)); body: new Markdown(data: pageData));
} }
} }