環境
macOS Big Sur Version 11.5.2
Flutter 2.2.3
Xcode 12.5.1
問題と原因
The method 'CupertinoButton' isn't defined for the type '_SampleAppPageState'. Try correcting the name to the name of an existing method, or defining a method named 'CupertinoButton'.
Cupertino系が未定義ですよと怒られている。
ちなみにCupertino系(クパティーノであり、カプチーノではないみたい)
と言うのはデザインの種類名称みたいなもので
iPhoneのデザインに近いのがこのCupertino系である。
逆にAndroidに近いデザインがMaterial系である。
解決方法
Cupertino系のモジュールをインポートしてあげる必要がある。
import 'package:flutter/cupertino.dart';
おわり
コメント