Blame view

lib/pages/section/widgets/section_bouns_item.dart 474 Bytes
8988aa69   liangchengyou   feat:首页+课程列表数据获取
1
2
  import 'package:flutter/cupertino.dart';
  import 'package:flutter_screenutil/flutter_screenutil.dart';
6f617434   liangchengyou   feat:磨耳朵/视频跟读列表页接口调整
3
  import 'package:wow_english/common/widgets/ow_image_widget.dart';
8988aa69   liangchengyou   feat:首页+课程列表数据获取
4
  
2187c85f   吴启风   feat:课程结构调整
5
6
  class SectionBoundsItem extends StatelessWidget {
    const SectionBoundsItem({super.key, this.imageUrl});
8988aa69   liangchengyou   feat:首页+课程列表数据获取
7
8
9
10
11
12
13
14
  
    final String? imageUrl;
  
    @override
    Widget build(BuildContext context) {
      return SizedBox(
        height: 207.h,
        width: 169.w,
6f617434   liangchengyou   feat:磨耳朵/视频跟读列表页接口调整
15
        child: OwImageWidget(name:imageUrl??''),
8988aa69   liangchengyou   feat:首页+课程列表数据获取
16
17
18
      );
    }
  }