mirror of
https://github.com/foss42/apidash.git
synced 2025-06-02 16:02:12 +08:00
17 lines
371 B
Dart
17 lines
371 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:apidash/widgets/widgets.dart';
|
|
|
|
class IntroPage extends StatefulWidget {
|
|
const IntroPage({super.key});
|
|
|
|
@override
|
|
State<IntroPage> createState() => _IntroPageState();
|
|
}
|
|
|
|
class _IntroPageState extends State<IntroPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const IntroMessage();
|
|
}
|
|
}
|