diff --git a/CHANGELOG.md b/CHANGELOG.md index 477f0d5..b148d04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ +## 0.5.1 +* Updates to support flutter version 3.32.1 +* Edge-to-edge mode fixes on Android + ## 0.5.0 * Added ability to share feature * Opening a suggested feature page using a link * Add sort by user suggestion * Fix bug with background color property - ## 0.4.3 * Add background color property to theme diff --git a/example/.gitignore b/example/.gitignore index 24476c5..6c31954 100644 --- a/example/.gitignore +++ b/example/.gitignore @@ -5,9 +5,11 @@ *.swp .DS_Store .atom/ +.build/ .buildlog/ .history .svn/ +.swiftpm/ migrate_working_dir/ # IntelliJ related diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 042aaa1..287be12 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -13,4 +13,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011 -COCOAPODS: 1.15.2 +COCOAPODS: 1.16.2 diff --git a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index 5e31d3d..9c12df5 100644 --- a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -26,6 +26,7 @@ buildConfiguration = "Debug" selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" + customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit" shouldUseLaunchSchemeArgsEnv = "YES"> diff --git a/example/pubspec.lock b/example/pubspec.lock index 1f8ed0d..5e3773b 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -246,7 +246,7 @@ packages: path: ".." relative: true source: path - version: "0.5.0" + version: "0.5.1" term_glyph: dependency: transitive description: diff --git a/lib/src/presentation/pages/suggestions/suggestions_page.dart b/lib/src/presentation/pages/suggestions/suggestions_page.dart index a6e316f..88e5f73 100644 --- a/lib/src/presentation/pages/suggestions/suggestions_page.dart +++ b/lib/src/presentation/pages/suggestions/suggestions_page.dart @@ -389,9 +389,7 @@ class _BottomFab extends StatelessWidget { @override Widget build(BuildContext context) { return Positioned( - bottom: (SuggestionsPlatform.isIOS - ? Dimensions.margin2x - : Dimensions.marginDefault) + + bottom: Dimensions.marginDefault + MediaQuery.paddingOf(context).bottom, right: Dimensions.marginDefault, child: SuggestionsFab( diff --git a/pubspec.yaml b/pubspec.yaml index 58d5003..22541b1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: suggest_a_feature description: Ready-made Flutter package for collecting suggestions from users. -version: 0.5.0 +version: 0.5.1 repository: https://github.com/flutterwtf/Suggest-a-Feature homepage: https://pub.dev/packages/suggest_a_feature