duytq94 / flutter-intro-slider

Simple and configurable app introduction slider for Flutter
https://pub.dartlang.org/packages/intro_slider
MIT License
677 stars 141 forks source link

Web support #100

Closed FiifiB closed 3 years ago

FiifiB commented 3 years ago

This is really great library. Do you plan to add web support for this as well as null safety? Looking forward to that addition

LautaroLobo12 commented 3 years ago

There's already a PR for migrating to null safety: #102

duytq94 commented 3 years ago

Hi all, https://github.com/duytq94/flutter-intro-slider/pull/102 has been merged

duytq94 commented 3 years ago

Web support has almost done except this error Unsupported operation: Platform._operatingSystem because I'm using Platform.isIOS to detect platform to using appropriate CupertinoScrollbar (iOS devices) or Scrollbar (Android devices). I can force only using one of them to pass this error but actually I would like to keep it for the best ux. Is there any suggestion for this?