flutter_platform_widgets icon indicating copy to clipboard operation
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

Results 62 flutter_platform_widgets issues
Sort by recently updated
recently updated
newest added

So I come to the realization that especially on Cupertino widgets not all styles are manageable through `CupertinoThemeData`, thus I end up having to set a `cupertino` theme builder on...

In my theme, I have: ```dart appBarTheme: base.appBarTheme.copyWith( backgroundColor: colorScheme.primary, titleTextStyle: textTheme.displaySmall!.copyWith( color: colorScheme.onPrimary, ), centerTitle: false, titleSpacing: textTheme.displaySmall!.fontSize! / 4, actionsIconTheme: IconThemeData( color: envPrimaryContrastColor, size: textTheme.displaySmall!.fontSize, applyTextScaling: true, ),...

Hi. I need to wrap PlatformTheme inside a theme Consumer to change primary color of theme based on button press. Is it correct? It's like PlatformTheme.of(context)?.themeMode assegnation does not work...

Hi, Despite of having date using French locale, "Cancel" and "Done" button are still in English : Is there any possibility to translate these button manually ? Regards

Hello all, I recently ran into an issue with the Platform Scaffold where if I combine it with a webview, the webview fails to load properly in some cases. This...

1. Many data classes could have had const constructors but didn't. I added it for all. - some were also missing final params - Most BaseData could be const, and...

## Description During the development of a project, I identified the absence of dropdown button functionality. To address this, I propose the implementation of a DropdownButton widget and a DropdownMenu...

I am relatively new here, and see that there is a `PlatformElevatedButton` and a `PlatformTextButton`, but what should we use for a `FilledButton`? It is one of the 5 types...

Hi community, I have been owning and maintaining this package for nearly 7 years back when Flutter was still in Beta. It started out as a "lets see if it...

Here is my StatefulWidget code `class _HomeScreenState extends State { var currentIndex = 0; final activeTabColor = Colors.amber; late final PageController _pageController; List getPages(final BuildContext context) => [ _TabInfo( title:...