show static method

Future show(
  1. BuildContext context, {
  2. Size? ovalSize,
  3. String? hint,
  4. TextStyle? hintStyle,
})

Implementation

static Future show(BuildContext context,
    {Size? ovalSize, String? hint, TextStyle? hintStyle}) {
  return Navigator.push(
    context,
    MaterialPageRoute(builder: (context) => FaceCollectScreen()),
  );
}