17 lines
344 B
Dart
17 lines
344 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Proton extends StatefulWidget {
|
|
Proton({super.key});
|
|
|
|
@override
|
|
ProtonState createState() => ProtonState();
|
|
}
|
|
|
|
class ProtonState extends State<Proton> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: Text("Proton Manager")),
|
|
);
|
|
}
|
|
}
|