Skip to content

Commit

Permalink
Merge pull request #212 from AppDaddy-Software-Solutions-Inc/remove-o…
Browse files Browse the repository at this point in the history
…ld-theme-page-transitions

remove old theme page transitions
  • Loading branch information
TheOlajos authored Feb 17, 2023
2 parents 3c12d1c + 3b354c1 commit 04faee8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/system.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ final String applicationTitle = "Flutter Markup Language " + version;
// This url is used to locate config.xml on startup
// Used in SingleApp only and on Web when developing on localhost
// Set this to file://applications/<app> to use the asset applications
String get defaultDomain => 'https://myrocketfundsv2.appdaddy.co';
String get defaultDomain => 'https://fml.dev';

// SingleApp - App initializes from a single domain endpoint (defined in defaultDomain)
// MultiApp - (Desktop & Mobile Only) Launches the Store at startup
Expand Down
14 changes: 7 additions & 7 deletions lib/theme/theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ class MyTheme
colorSchemeSeed: col ?? Colors.blueGrey,
brightness: b,
fontFamily: font,
pageTransitionsTheme: PageTransitionsTheme(builders: {
TargetPlatform.android: CustomTransitionBuilder('android'),
TargetPlatform.iOS: CustomTransitionBuilder('ios'),
TargetPlatform.macOS: CustomTransitionBuilder('macos'),
TargetPlatform.windows: CustomTransitionBuilder('windows'),
TargetPlatform.linux: CustomTransitionBuilder('linux'),
}),
// pageTransitionsTheme: PageTransitionsTheme(builders: {
// TargetPlatform.android: CustomTransitionBuilder('android'),
// TargetPlatform.iOS: CustomTransitionBuilder('ios'),
// TargetPlatform.macOS: CustomTransitionBuilder('macos'),
// TargetPlatform.windows: CustomTransitionBuilder('windows'),
// TargetPlatform.linux: CustomTransitionBuilder('linux'),
// }),
useMaterial3: true);
}

Expand Down

0 comments on commit 04faee8

Please sign in to comment.