Tkko / Flutter_Pinput

Flutter package to create Pin code input text field with every pixel customization possibility 🎨 with beautiful animations, iOS autofill, Android autofill
https://pub.dev/packages/pinput
MIT License
776 stars 179 forks source link

Not Working with Cupertino APP #161

Closed ray1422 closed 11 months ago

ray1422 commented 11 months ago

No MaterialLocalizations found.

Describe the bug A clear and concise description of what the bug is.

To Reproduce Steps to reproduce the behavior: Use the widget under CupertinoPageScaffold

ray1422 commented 11 months ago

Solved by adding the following arguments into CupertinoApp

localizationsDelegates: const [
        DefaultMaterialLocalizations.delegate,
        DefaultCupertinoLocalizations.delegate,
        DefaultWidgetsLocalizations.delegate,
      ],