flutter_platform_widgets
flutter_platform_widgets copied to clipboard
Target the specific design of Material for Android and Cupertino for iOS widgets through a common set of Platform aware widgets
1. Changed product name from "example" to "flutter_platform_widgets_example" 2. Improved the text on the "Platform Style Switch" button. 3. Added Podfile of iOS platform 4. Upgraded the dependency version.
Hi. Thanks for this awesome package which can help a lot in development. I see issue with using `RefreshIndicator.adaptive` widget in IOS inside `PlatformScaffold`. My example works fine on Android....
I did not carefully examine the feasibility of the code architecture, but simply considered the appearance of the control and the similarity of the usage scenario. | Widget | on...
Hello, I've encountered an issue when using both the Material dark theme and Cupertino dark theme simultaneously on iOS. Specifically, the Material dark theme appears to override the Cupertino dark...
I have a `PlatformNavBar `that when I swipe back (back button) to the previous view, in the bottom bar the tab's icon is colored on the right tab, but the...
Add project to CI to make sure it builds
This is a platform dialog spawned on Material: ```dart await showPlatformDialog( context: context, builder: (_) => PlatformAlertDialog( title: Text(l10n.cardCabinetDetailActionStartGrow), content: Text(l10n.cardCabinetDetailActionStartGrowInstructions), actions: [ PlatformDialogAction( // ... ``` This is a...
`CupertinoElevatedButtonData.color` is useful to change the background of a `PlatformElevatedButton` on Cupertino when `cupertino.originalStyle: false`. However when trying to change the foreground, nothing can be done. `CupertinoElevatedButtonData` should allow to...
Right here: https://github.com/stryder-dev/flutter_platform_widgets/blob/216d5e245854e9c852ca3416b36ca9de0d9e92b4/lib/src/platform_elevated_button.dart#L194 It passes `color` in. Instead, it should pass `data?.color ?? color` in, such as in https://github.com/stryder-dev/flutter_platform_widgets/blob/216d5e245854e9c852ca3416b36ca9de0d9e92b4/lib/src/platform_elevated_button.dart#L174
The `PlatformTabController` gives no ability to configure any sort of animation. Right now, the transition between tabs within the `PlatformTabScaffold` is instant. I think it would be very useful to...