-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
120 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
## 4.0.1 - 2023-06-30 | ||
|
||
- Update README.md | ||
- Refactoring | ||
|
||
## 4.0.0 - 2023-05-13 | ||
|
||
### Changed | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,39 @@ | ||
import 'package:meta/meta.dart'; | ||
|
||
import 'base_host_platform.dart' show HostPlatform; | ||
import 'default_host_platform.dart'; | ||
import 'enums.dart'; | ||
|
||
/// List of all mobile phone operating systems | ||
const List<OperatingSystem> kListOSForMobile = <OperatingSystem>[ | ||
/// Set of all mobile phone operating systems | ||
@internal | ||
const Set<OperatingSystem> kListOSForMobile = <OperatingSystem>{ | ||
OperatingSystem.android, | ||
OperatingSystem.iOS, | ||
]; | ||
}; | ||
|
||
/// List of all operating systems with material design | ||
const List<OperatingSystem> kListOSWithMaterialDesign = <OperatingSystem>[ | ||
/// Set of all operating systems with material design | ||
@internal | ||
const Set<OperatingSystem> kListOSWithMaterialDesign = <OperatingSystem>{ | ||
OperatingSystem.android, | ||
OperatingSystem.fuchsia, | ||
]; | ||
}; | ||
|
||
/// List of all operating systems with cupertino design | ||
const List<OperatingSystem> kListOSWithCupertinoDesign = <OperatingSystem>[ | ||
/// Set of all operating systems with cupertino design | ||
@internal | ||
const Set<OperatingSystem> kListOSWithCupertinoDesign = <OperatingSystem>{ | ||
OperatingSystem.macOS, | ||
OperatingSystem.iOS, | ||
]; | ||
}; | ||
|
||
/// List of all desktop operating systems | ||
const List<OperatingSystem> kListOSForDesktop = <OperatingSystem>[ | ||
/// Set of all desktop operating systems | ||
@internal | ||
const Set<OperatingSystem> kListOSForDesktop = <OperatingSystem>{ | ||
OperatingSystem.windows, | ||
OperatingSystem.macOS, | ||
OperatingSystem.fuchsia, | ||
OperatingSystem.linux, | ||
]; | ||
}; | ||
|
||
/// Unknown host platform with default values | ||
@internal | ||
const HostPlatform kDefaultHostPlatform = DefaultHostPlatform(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52c24c9
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
platform-info – ./
platform-info-plugfox.vercel.app
platform-info-git-master-plugfox.vercel.app
platform-info.vercel.app