1234567891011121314151617181920 |
- 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<GuidePage> {
- @override
- Widget build(BuildContext context) {
- return Container(
- child: ,
- );
- }
- }
|