Results 13 comments of Alan Chan

Which flutter version are you using?

`**Tolerance tolerance = Tolerance(velocity: velocity);**` This fix wouldn't work as there will be rubber banding behavior when scrolling the spinner. Can you guys try running `flutter upgrade`, see if it...

Currently it's designed as a dialog, if you want to use it as a widget there are design modifications to be made. Do you have anything in mind how it...

Added `OmniDateTimePicker` as a widget in v2.0.0

Swiping is disabled in v2.0.0

No longer using tolerance in v2.0.0

Flutter (Channel stable, 3.3.10, on macOS 13.1 22C65 darwin-arm, locale en-MY) Having same issue on Flutter Web, can be reproduced with: ``` class HomeView extends StatelessWidget { const HomeView({super.key}); @override...

After a few tries, I found out that it works when using html renderer instead of canvaskit, is it possible to fix for canvaskit?

This should work in v2.2.0 ``` theme: ThemeData( timePickerTheme: const TimePickerThemeData( hourMinuteTextStyle: TextStyle( color: Colors.red, fontSize: 20, ), )) ```