Skip to content

Commit 15fe6db

Browse files
committed
fix: launch image icon size
1 parent 6036849 commit 15fe6db

File tree

8 files changed

+7
-6
lines changed

8 files changed

+7
-6
lines changed

ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ EXTERNAL SOURCES:
4949
:path: ".symlinks/plugins/webview_flutter/ios"
5050

5151
SPEC CHECKSUMS:
52-
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
52+
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
5353
in_app_review: 4a97249f7a2f539a0f294c2d9196b7fe35e49541
5454
launch_review: 75d5a956ba8eaa493e9c9d4bf4c05e505e8d5ed0
5555
package_info: 873975fc26034f0b863a300ad47e7f1ac6c7ec62
5.45 KB
Loading
8.55 KB
Loading
2.73 KB
Loading

ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"images" : [
33
{
4-
"filename" : "icon.png",
4+
"filename" : "72.png",
55
"idiom" : "universal",
66
"scale" : "1x"
77
},
88
{
9-
"filename" : "icon.png",
9+
"filename" : "144.png",
1010
"idiom" : "universal",
1111
"scale" : "2x"
1212
},
1313
{
14-
"filename" : "icon.png",
14+
"filename" : "216.png",
1515
"idiom" : "universal",
1616
"scale" : "3x"
1717
}
-70 KB
Binary file not shown.

lib/widgets/html_view.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class _HtmlViewState extends State<HtmlView> {
5555
javascriptMode: JavascriptMode.unrestricted,
5656
onWebViewCreated: (c) async {
5757
controller = c;
58-
timer = Timer.periodic(Duration(milliseconds: 300), (t) {
58+
timer = Timer.periodic(Duration(milliseconds: 1000), (t) {
5959
updateHeight();
6060
});
6161
},

lib/widgets/markdown_view.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ class MarkdownView extends StatelessWidget {
5555
}
5656
}
5757

58+
// TODO: Safari table width
5859
class MarkdownWebView extends StatelessWidget {
5960
final String html;
6061
MarkdownWebView(this.html);
@@ -73,7 +74,7 @@ html {
7374
}
7475
.markdown-body img {
7576
filter:invert(100%);
76-
}'
77+
}
7778
''';
7879
}
7980
return HtmlView(html, cssText: css);

0 commit comments

Comments
 (0)