Formatting and changelog mods

This commit is contained in:
Phani Pavan K
2023-04-08 13:55:46 +05:30
parent 7c8f4d70c2
commit 9175eee614
3 changed files with 5 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
- Fixed ![#6](https://github.com/kphanipavan/modal_progress_hud_nsn/issues/6) - Fixed ![#6](https://github.com/kphanipavan/modal_progress_hud_nsn/issues/6)
- Updated to work with Flutter 3.7.9 - Updated to work with Flutter 3.7.9
- Added web support
## 0.3.0 ## 0.3.0

View File

@@ -11,7 +11,8 @@ class MethodChannelModalProgressHudNsn extends ModalProgressHudNsnPlatform {
@override @override
Future<String?> getPlatformVersion() async { Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>('getPlatformVersion'); final version =
await methodChannel.invokeMethod<String>('getPlatformVersion');
return version; return version;
} }
} }

View File

@@ -8,7 +8,8 @@ abstract class ModalProgressHudNsnPlatform extends PlatformInterface {
static final Object _token = Object(); static final Object _token = Object();
static ModalProgressHudNsnPlatform _instance = MethodChannelModalProgressHudNsn(); static ModalProgressHudNsnPlatform _instance =
MethodChannelModalProgressHudNsn();
/// The default instance of [ModalProgressHudNsnPlatform] to use. /// The default instance of [ModalProgressHudNsnPlatform] to use.
/// ///