idk what i did

This commit is contained in:
BalazsManus 2025-02-13 20:54:28 +01:00
parent b6b5c71cef
commit 2ac948539c

View File

@ -82,7 +82,7 @@ class SettingsScreen extends StatefulWidget {
class SettingsScreenState extends State<SettingsScreen> class SettingsScreenState extends State<SettingsScreen>
with SingleTickerProviderStateMixin { with SingleTickerProviderStateMixin {
int devmodeCountdown = 5; int devmodeCountdown = 5;
bool __ss = false; // secret settings bool __ss = true; // secret settings
Future<Map>? futureRelease; Future<Map>? futureRelease;
@ -949,12 +949,12 @@ class SettingsScreenState extends State<SettingsScreen>
padding: EdgeInsets.only(top: 8.0), padding: EdgeInsets.only(top: 8.0),
cardPadding: EdgeInsets.all(4.0), cardPadding: EdgeInsets.all(4.0),
children: [ children: [
MenuNotifications( /*MenuNotifications(
borderRadius: BorderRadius.vertical( borderRadius: BorderRadius.vertical(
top: Radius.circular(12.0), top: Radius.circular(12.0),
bottom: Radius.circular(12.0), bottom: Radius.circular(12.0),
), ),
), ),*/
], ],
), ),
@ -1291,7 +1291,7 @@ class SettingsScreenState extends State<SettingsScreen>
], ],
), ),
// developer options // developer options
if (settings.developerMode) if (true)
SplittedPanel( SplittedPanel(
title: Text("devsettings".i18n), title: Text("devsettings".i18n),
cardPadding: const EdgeInsets.all(4.0), cardPadding: const EdgeInsets.all(4.0),
@ -1403,7 +1403,7 @@ class SettingsScreenState extends State<SettingsScreen>
color: AppColors.of(context) color: AppColors.of(context)
.text .text
.withOpacity(0.65)), .withOpacity(0.65)),
child: Text("v$envAppVer"), child: Text("reFilc, módosítva a Filc csapat által"),
); );
} }
}, },