user_page.dart 357 Bytes
import 'package:flutter/material.dart';

import '../common/widgets/we_app_bar.dart';

class UserPage extends StatelessWidget {
  const UserPage({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.white,
      appBar: WEAppBar(
        titleText: '1',
      ),
      body: Row(),
    );
  }
}