guide_page.dart 449 B

1234567891011121314151617181920
  1. import 'package:flutter/material.dart';
  2. /// Description: 新手引导页
  3. /// Time : 04/30/2023 Sunday
  4. /// Author : liuyuqi.gov@msn.cn
  5. class GuidePage extends StatefulWidget {
  6. GuidePage({Key? key}) : super(key: key);
  7. @override
  8. _GuidePageState createState() => _GuidePageState();
  9. }
  10. class _GuidePageState extends State<GuidePage> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return Container(
  14. child: ,
  15. );
  16. }
  17. }