Skip to content

Commit

Permalink
fix: launch image icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
pd4d10 committed Dec 12, 2020
1 parent 6036849 commit 15fe6db
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Expand Up @@ -49,7 +49,7 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/webview_flutter/ios"

SPEC CHECKSUMS:
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
in_app_review: 4a97249f7a2f539a0f294c2d9196b7fe35e49541
launch_review: 75d5a956ba8eaa493e9c9d4bf4c05e505e8d5ed0
package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
@@ -1,17 +1,17 @@
{
"images" : [
{
"filename" : "icon.png",
"filename" : "72.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "icon.png",
"filename" : "144.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "icon.png",
"filename" : "216.png",
"idiom" : "universal",
"scale" : "3x"
}
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/widgets/html_view.dart
Expand Up @@ -55,7 +55,7 @@ class _HtmlViewState extends State<HtmlView> {
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (c) async {
controller = c;
timer = Timer.periodic(Duration(milliseconds: 300), (t) {
timer = Timer.periodic(Duration(milliseconds: 1000), (t) {
updateHeight();
});
},
Expand Down
3 changes: 2 additions & 1 deletion lib/widgets/markdown_view.dart
Expand Up @@ -55,6 +55,7 @@ class MarkdownView extends StatelessWidget {
}
}

// TODO: Safari table width
class MarkdownWebView extends StatelessWidget {
final String html;
MarkdownWebView(this.html);
Expand All @@ -73,7 +74,7 @@ html {
}
.markdown-body img {
filter:invert(100%);
}'
}
''';
}
return HtmlView(html, cssText: css);
Expand Down

0 comments on commit 15fe6db

Please sign in to comment.