Blame view

lib/home/home_page.dart 536 Bytes
95edef4f   liangchengyou   feat:更新适配代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  import 'package:flutter/material.dart';
  import 'package:wow_english/home/widgets/home_tab_header_widget.dart';
  
  class HomePage extends StatelessWidget {
    const HomePage({super.key});
  
    @override
    Widget build(BuildContext context) {
      return Scaffold(
        body: SafeArea(
          child: Container(
            color: Colors.white,
            child: const Center(
              child: Column(
                children: [
                  HomeTabHeaderWidget(),
                ],
              ),
            ),
          ),
        ),
      );
    }
  }