-
-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maintenance updates (Support flutter 3.10) #749
Conversation
@@ -54,7 +54,7 @@ android { | |||
|
|||
defaultConfig { | |||
applicationId "com.jonjomckay.fritter" | |||
minSdkVersion 16 | |||
minSdkVersion 19 |
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.
Is there a reason this has to be bumped to 19? I do still have pings from users on 16, so I'd like to keep Fritter working for them if possible!
@@ -41,20 +41,21 @@ class GroupModel extends StreamStore<Object, SubscriptionGroupGet> { | |||
var group = (await database.query(tableSubscriptionGroup, where: 'id = ?', whereArgs: [id])).first; | |||
|
|||
if (id == '-1') { | |||
var subscriptions = (await database.query(tableSubscription)) |
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.
Please can you make these whitespace/formatting changes in a separate PR, and/or exclude them from this one? It makes it very difficult to review the actual changes.
git add -p
is helpful when staging, which allows you choose which chunks to stage and which to ignore.
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 couldn't stop this from happening as VSCode auto formats on save
@@ -483,7 +482,7 @@ class _FritterAppState extends State<FritterApp> { | |||
blendOnColors: false, | |||
), | |||
visualDensity: FlexColorScheme.comfortablePlatformDensity, | |||
useMaterial3: false, | |||
useMaterial3: true, |
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 don't think I'm ready to turn this back on in Fritter, until Flutter's Material 3 support is fully baked. Last time I enabled this, it made some bizarre layout changes, and there were plenty of missing components.
See c25c02c
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.
Ok, I understand I will revert this change
Changes I have made:
minSdkVersion
to19
useMaterial3
totrue
flex_color_scheme
share
in place ofshare_plus