|
1 |
| -// TMOD Installer (c) by tricked |
| 1 | +// ArgonInstaller (c) by tricked |
2 | 2 | //
|
3 |
| -// TMOD Installer is licensed under a |
| 3 | +// ArgonInstaller is licensed under a |
4 | 4 | // Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License.
|
5 | 5 | //
|
6 | 6 | // You should have received a copy of the license along with this
|
@@ -50,11 +50,11 @@ void main(List<String> args) async {
|
50 | 50 | await windowManager.setSkipTaskbar(false);
|
51 | 51 | });
|
52 | 52 |
|
53 |
| - runApp(const TModInstallerApp()); |
| 53 | + runApp(const ArgonInstallerApp()); |
54 | 54 | }
|
55 | 55 |
|
56 |
| -class TModInstallerApp extends StatelessWidget { |
57 |
| - const TModInstallerApp({Key? key}) : super(key: key); |
| 56 | +class ArgonInstallerApp extends StatelessWidget { |
| 57 | + const ArgonInstallerApp({Key? key}) : super(key: key); |
58 | 58 |
|
59 | 59 | // This widget is the root of your application.
|
60 | 60 | @override
|
@@ -110,24 +110,24 @@ class TModInstallerApp extends StatelessWidget {
|
110 | 110 | initialRoute: '/',
|
111 | 111 | routes: {
|
112 | 112 | '/': (_) =>
|
113 |
| - const TModInstallerPage(title: 'Tricked mod Installer') |
| 113 | + const ArgonInstallerPage(title: 'Tricked mod Installer') |
114 | 114 | },
|
115 |
| - // home: const TModInstallerPage(title: 'Tricked mod Installer'), |
| 115 | + // home: const ArgonInstallerPage(title: 'Tricked mod Installer'), |
116 | 116 | );
|
117 | 117 | });
|
118 | 118 | }
|
119 | 119 | }
|
120 | 120 |
|
121 |
| -class TModInstallerPage extends StatefulWidget { |
122 |
| - const TModInstallerPage({Key? key, required this.title}) : super(key: key); |
| 121 | +class ArgonInstallerPage extends StatefulWidget { |
| 122 | + const ArgonInstallerPage({Key? key, required this.title}) : super(key: key); |
123 | 123 |
|
124 | 124 | final String title;
|
125 | 125 |
|
126 | 126 | @override
|
127 |
| - State<TModInstallerPage> createState() => _TModInstallerPageState(); |
| 127 | + State<ArgonInstallerPage> createState() => _ArgonInstallerPageState(); |
128 | 128 | }
|
129 | 129 |
|
130 |
| -class _TModInstallerPageState extends State<TModInstallerPage> { |
| 130 | +class _ArgonInstallerPageState extends State<ArgonInstallerPage> { |
131 | 131 | @override
|
132 | 132 | void initState() {
|
133 | 133 | super.initState();
|
@@ -183,7 +183,7 @@ class _TModInstallerPageState extends State<TModInstallerPage> {
|
183 | 183 | // return const DragToMoveArea(
|
184 | 184 | // child: Align(
|
185 | 185 | // alignment: AlignmentDirectional.centerStart,
|
186 |
| - // child: Text("TMod Installer"), |
| 186 | + // child: Text("Argon Installer"), |
187 | 187 | // ),
|
188 | 188 | // );
|
189 | 189 | // }(),
|
|
0 commit comments