24 lines
434 B
Dart
24 lines
434 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../widgets/common/app_backend.dart';
|
|
|
|
class MyPage extends StatefulWidget {
|
|
const MyPage({super.key});
|
|
|
|
@override
|
|
State<MyPage> createState() => _MyPageState();
|
|
}
|
|
|
|
class _MyPageState extends State<MyPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return AppBackend(
|
|
child: Column(
|
|
children: [
|
|
Text("ds")
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|