Martin Braun

Results 145 issues of Martin Braun

`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...

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, ),...