Blame view

lib/pages/user/user_page.dart 380 Bytes
22b7d4da   Key   feat: user, api path
1
  import 'package:flutter/material.dart';
4b358e22   liangchengyou   feat:调整文件结构
2
  import 'package:wow_english/common/widgets/we_app_bar.dart';
22b7d4da   Key   feat: user, api path
3
  
22b7d4da   Key   feat: user, api path
4
5
6
7
8
9
  
  class UserPage extends StatelessWidget {
    const UserPage({super.key});
  
    @override
    Widget build(BuildContext context) {
4b358e22   liangchengyou   feat:调整文件结构
10
      return const Scaffold(
22b7d4da   Key   feat: user, api path
11
12
13
14
15
16
17
18
        backgroundColor: Colors.white,
        appBar: WEAppBar(
          titleText: '1',
        ),
        body: Row(),
      );
    }
  }