import 'package:flutter/material.dart'; /// Description: 新手引导页 /// Time : 04/30/2023 Sunday /// Author : liuyuqi.gov@msn.cn class GuidePage extends StatefulWidget { GuidePage({Key? key}) : super(key: key); @override _GuidePageState createState() => _GuidePageState(); } class _GuidePageState extends State { @override Widget build(BuildContext context) { return Container( child: , ); } }