14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
import 'package:flutter/material.dart';
|
|
|
|
class UpgradeDialog extends StatefulWidget {
|
|
@override
|
|
_UpgradeDialogState createState() => _UpgradeDialogState();
|
|
}
|
|
|
|
class _UpgradeDialogState extends State<UpgradeDialog> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
}
|