import 'package:flutter/material.dart'; class UsersView extends StatefulWidget { const UsersView({super.key}); @override State createState() => _UsersViewState(); } class _UsersViewState extends State { @override Widget build(BuildContext context) { return Container( color: const Color.fromRGBO(166, 0, 249, 1), child: const Center( child: Text( 'Users', style: TextStyle( color: Colors.white, fontSize: 24, ), ), ), ); } }