diff --git a/lib/home.dart b/lib/home.dart index 17b4d4b..6d1928d 100644 --- a/lib/home.dart +++ b/lib/home.dart @@ -55,10 +55,12 @@ class HomePageState extends State { padding: EdgeInsets.all(16), child: Column( children: [ - if(Platform.isLinux) - ListTile(title: Text("Proton"), - leading: Icon(CupertinoIcons.gear), - subtitle: Text("Linux Proton"),), // Not yet implemented + if (Platform.isLinux) + ListTile( + title: Text("Proton"), + leading: Icon(CupertinoIcons.gear), + subtitle: Text("Linux Proton"), + ), // Not yet implemented ListTile( title: Text("SteamCMD"), leading: Icon(Icons.comment_rounded), diff --git a/lib/proton.dart b/lib/proton.dart new file mode 100644 index 0000000..afe978a --- /dev/null +++ b/lib/proton.dart @@ -0,0 +1,17 @@ +import 'package:flutter/material.dart'; + +class Proton extends StatefulWidget { + Proton({super.key}); + + @override + ProtonState createState() => ProtonState(); +} + +class ProtonState extends State { + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Text("Proton Manager")), + ); + } +}