Start to add a proton submenu
This commit is contained in:
parent
04ac7789d2
commit
c7d454138e
2 changed files with 23 additions and 4 deletions
|
@ -55,10 +55,12 @@ class HomePageState extends State<HomePage> {
|
||||||
padding: EdgeInsets.all(16),
|
padding: EdgeInsets.all(16),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
if(Platform.isLinux)
|
if (Platform.isLinux)
|
||||||
ListTile(title: Text("Proton"),
|
ListTile(
|
||||||
leading: Icon(CupertinoIcons.gear),
|
title: Text("Proton"),
|
||||||
subtitle: Text("Linux Proton"),), // Not yet implemented
|
leading: Icon(CupertinoIcons.gear),
|
||||||
|
subtitle: Text("Linux Proton"),
|
||||||
|
), // Not yet implemented
|
||||||
ListTile(
|
ListTile(
|
||||||
title: Text("SteamCMD"),
|
title: Text("SteamCMD"),
|
||||||
leading: Icon(Icons.comment_rounded),
|
leading: Icon(Icons.comment_rounded),
|
||||||
|
|
17
lib/proton.dart
Normal file
17
lib/proton.dart
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
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")),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue