Skip to content

Commit

Permalink
commit some code
Browse files Browse the repository at this point in the history
  • Loading branch information
mengyanshou committed Nov 30, 2023
1 parent eb69890 commit ce06f14
Show file tree
Hide file tree
Showing 6 changed files with 230 additions and 223 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.6.10'
ext.kotlin_version = '1.9.0'
repositories {
google()
jcenter()
Expand Down
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
5 changes: 5 additions & 0 deletions lib/material_app_entry_point.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ class SpeedShare extends StatelessWidget {
Breakpoint(start: 500, end: 500, name: TABLET),
Breakpoint(start: 500, end: double.infinity, name: DESKTOP),
],
breakpointsLandscape: [
const Breakpoint(start: 0, end: 450, name: MOBILE),
const Breakpoint(start: 451, end: 800, name: TABLET),
const Breakpoint(start: 801, end: double.infinity, name: DESKTOP),
],
);
},
);
Expand Down
Loading

0 comments on commit ce06f14

Please sign in to comment.