import 'package:flutter/material.dart'; class OtherPage extends StatefulWidget { const OtherPage({Key? key}) : super(key: key); @override _OtherPageState createState() => _OtherPageState(); } class _OtherPageState extends State { @override Widget build(BuildContext context) { return Scaffold(); } }