18 lines
346 B
Dart
18 lines
346 B
Dart
// ignore_for_file: library_private_types_in_public_api
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class Ai extends StatefulWidget {
|
|
const Ai({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_AiState createState() => _AiState();
|
|
}
|
|
|
|
class _AiState extends State<Ai> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|