Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
crazecoder committed Oct 13, 2024
1 parent d455390 commit 5efe967
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions open_file_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 1.0.3
- fix LateInitializationError
## 1.0.2
- remove `uti`, DocumentInteraction Auto on iOS.
- remove `webData`, only open files in the project directory on the web
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import 'dart:async';
import 'package:plugin_platform_interface/plugin_platform_interface.dart';

import '../method_channel/method_channel_open_file.dart';
import '../types/open_result.dart';

abstract class OpenFilePlatform extends PlatformInterface {
static final Object _token = Object();
static late OpenFilePlatform _instance;
static OpenFilePlatform _instance = MethodChannelOpenFile();

static OpenFilePlatform get platform => _instance;

Expand Down
2 changes: 1 addition & 1 deletion open_file_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: open_file_platform_interface
description: A common platform interface for the open_file plugin.
repository: https://github.com/crazecoder/open_file/tree/master/open_file_platform_interface
version: 1.0.2
version: 1.0.3

environment:
sdk: ">=2.17.0 <4.0.0"
Expand Down

0 comments on commit 5efe967

Please sign in to comment.