This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
[camera] Add back Optional type for nullable CameraController orientations #6911
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
61adbf5
Add flag
camsim99 1e69503
Add missing comment
camsim99 ad78158
Add tests
camsim99 29b4bb5
Bump versions
camsim99 39b9240
Stage changelog changes
camsim99 ca483a7
Revert "Fix examples analyze"
camsim99 03f992c
Revert "[camera] Remove deprecated Optional type (#6870)"
camsim99 d10b1cc
Add back optional
camsim99 8230dfb
Merge remote-tracking branch 'upstream/main' into fix_optional_2
camsim99 6412a1b
Edit changelog
camsim99 1ac5c32
Merge remote-tracking branch 'upstream/main' into fix_optional_2
camsim99 2d74959
Fix semicolon
camsim99 c56da37
Add )
camsim99 353c82d
Merge remote-tracking branch 'upstream/main' into fix_optional_2
camsim99 808ce8e
Merge remote-tracking branch 'upstream/main' into fix_optional_2
camsim99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,7 @@ | ||
## 0.10.3 | ||
|
||
* Adds back use of Optional type. | ||
|
||
## 0.10.2+1 | ||
|
||
* Updates code for stricter lint checks. | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,5 +1,6 @@ | ||
## NEXT | ||
## 0.10.3 | ||
|
||
* Adds back use of Optional type. | ||
* Updates minimum Flutter version to 3.0. | ||
|
||
## 0.10.2+3 | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
i'm a bit confused about this part - is
Optional
the old "nullable" before null safety in dart?