基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hot_test.dart 505 B

1234567891011121314151617181920
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter_screenutil/flutter_screenutil.dart';
  3. import 'hot_ranking_list/hot_ranking_list.dart';
  4. class HotTest extends StatefulWidget {
  5. @override
  6. _HotTestState createState() => _HotTestState();
  7. }
  8. class _HotTestState extends State<HotTest> {
  9. @override
  10. Widget build(BuildContext context) {
  11. // 屏幕适配初始化
  12. ScreenUtil.init(context, width: 750, height: 1334);
  13. return Scaffold(
  14. body: HotRankingList(null),
  15. );
  16. }
  17. }