import 'package:flutter/material.dart'; class MomentsUserPage extends StatefulWidget { const MomentsUserPage({Key? key}) : super(key: key); @override State createState() => _MomentsUserPageState(); } class _MomentsUserPageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Moments'), ), ); } }