-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Replace depreciated
withOpacity
method with withValues
- Loading branch information
1 parent
f1b7141
commit 7554f3d
Showing
9 changed files
with
46 additions
and
12 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,66 +1,91 @@ | ||
## 2.0.15 | ||
|
||
- **FIX**: Replace depreciated `withOpacity` method with `withValues` | ||
|
||
## 2.0.14 | ||
|
||
- **CHORE**: Addressed static analysis info and warning messages to improve code quality and reduce noise during analysis. | ||
- **FIX**: Replace depreciated items with up-to-date-ones | ||
|
||
## 2.0.13: | ||
|
||
- **CHORE**: Major version increase of at_commons from ^3.0.55 to ^4.0.1 | ||
|
||
## 2.0.12 | ||
|
||
- **CHORE**: Updated repository URL | ||
|
||
## 2.0.11 | ||
|
||
- **CHORE**: Updated dependencies and android gradle versions | ||
|
||
## 2.0.10 | ||
|
||
- **CHORE**: Updated readme | ||
|
||
## 2.0.9 | ||
|
||
- **FIX**: Minor UI updates | ||
- **CHORE**: Updated dependency | ||
|
||
## 2.0.8 | ||
|
||
- **FIX**: Lint Fixes according to flutter 3.0 | ||
|
||
## 2.0.7 | ||
|
||
- **FIX**: Added missing fontWeight | ||
|
||
## 2.0.6 | ||
|
||
- **DOCS**: Documentation updated | ||
|
||
## 2.0.5 | ||
|
||
- **DOCS**: Updated Readme.md and example.md | ||
- **CHORE**: Updated example to demonstrate inheriting theme from calling app | ||
|
||
## 2.0.4 | ||
|
||
- **FEAT**: Added check for mobile, tablet and desktop in SizeConfig | ||
|
||
## 2.0.3 | ||
|
||
- **FEAT**: Added `isDesktop` check in CustomAppBar | ||
|
||
## 2.0.2 | ||
|
||
- **FEAT**: borderRadius option added in CustomButton | ||
|
||
## 2.0.1 | ||
|
||
- **UPDATE**: Updated description, repository link | ||
- **FEAT**: More options in CustomInputField | ||
|
||
## 2.0.0 | ||
|
||
- **UPDATE**: Null safety support | ||
|
||
## 1.0.1 | ||
|
||
- **DOCS**: Updated documentation | ||
|
||
## 1.0.0 | ||
|
||
- **CHORE**: Updated authentication in example app | ||
|
||
## 0.0.4 | ||
|
||
- **CHORE**: Updated example app | ||
|
||
## 0.0.3 | ||
|
||
- **CHORE**: Updated with example app | ||
|
||
## 0.0.2 | ||
|
||
- **BREAKING CHANGES**: This release consists of parameter change in custom button and custom input field | ||
|
||
## 0.0.1 | ||
|
||
- The initial release consists of custom appBar, custom button and custom input field |
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
2 changes: 1 addition & 1 deletion
2
...s/at_common_flutter/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
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
6 changes: 5 additions & 1 deletion
6
packages/at_common_flutter/example/macos/Runner/AppDelegate.swift
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,9 +1,13 @@ | ||
import Cocoa | ||
import FlutterMacOS | ||
|
||
@NSApplicationMain | ||
@main | ||
class AppDelegate: FlutterAppDelegate { | ||
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { | ||
return true | ||
} | ||
|
||
override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { | ||
return true | ||
} | ||
} |
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