Skip to content

Commit

Permalink
git tag v1.0.2+7
Browse files Browse the repository at this point in the history
  • Loading branch information
matteriot committed Jul 29, 2024
1 parent 30ed5c5 commit 940b5d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.2+7]

* aria2 web page

## [1.0.2+6]

* aria2 web page
Expand Down
6 changes: 5 additions & 1 deletion lib/plugins/openWithChoice/aria2/Aria2Page.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:openiothub_constants/openiothub_constants.dart';
Expand Down Expand Up @@ -36,7 +38,9 @@ class Aria2PageState extends State<Aria2Page> {
),
)
..loadRequest(Uri.parse(initialUrl));
controller.runJavaScript(jsCode);
Future.delayed(Duration(seconds: 2), (){
controller.runJavaScript(jsCode);
});
return WebViewWidget(controller: controller);
}
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: openiothub_plugin
description: openiothub_plugin
version: 1.0.2+6
version: 1.0.2+7
homepage: https://github.com/OpenIoTHub

environment:
Expand Down

0 comments on commit 940b5d9

Please sign in to comment.