Browse Source

neon: Fix news article loading

pull/72/head
jld3103 2 years ago
parent
commit
cdba87fc25
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 5
      packages/neon/lib/src/apps/news/pages/article.dart

5
packages/neon/lib/src/apps/news/pages/article.dart

@ -141,6 +141,7 @@ class _NewsArticlePageState extends State<NewsArticlePage> {
body: widget.useWebView
? Stack(
alignment: Alignment.center,
fit: StackFit.expand,
children: [
WebView(
javascriptMode: JavascriptMode.unrestricted,
@ -161,8 +162,7 @@ class _NewsArticlePageState extends State<NewsArticlePage> {
},
),
if (_webviewLoading) ...[
Expanded(
child: ColoredBox(
ColoredBox(
color: Theme.of(context).colorScheme.background,
child: Center(
child: LayoutBuilder(
@ -173,7 +173,6 @@ class _NewsArticlePageState extends State<NewsArticlePage> {
),
),
),
),
],
],
)

Loading…
Cancel
Save