It's rim(W!)orld

This commit is contained in:
2025-03-16 02:05:24 +01:00
parent eee0ede75d
commit 07ba9604fa
7 changed files with 12 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ void main() {
// Get a reference to the logger (now auto-initializes)
final logger = Logger.instance;
logger.info('Rimworld Mod Manager starting...');
logger.info('RimWorld Mod Manager starting...');
// Initialize the mod manager
modManager = ModList(path: modsRoot);
@@ -25,7 +25,7 @@ class RimWorldModManager extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Rimworld Mod Manager',
title: 'RimWorld Mod Manager',
theme: ThemeData.dark().copyWith(
primaryColor: const Color(0xFF3D4A59),
colorScheme: ColorScheme.fromSeed(
@@ -62,7 +62,7 @@ class _ModManagerHomePageState extends State<ModManagerHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Rimworld Mod Manager')),
appBar: AppBar(title: const Text('RimWorld Mod Manager')),
body: _pages[_selectedIndex],
bottomNavigationBar: BottomNavigationBar(
currentIndex: _selectedIndex,
@@ -186,7 +186,7 @@ class _ModManagerPageState extends State<ModManagerPage> {
),
const SizedBox(height: 16),
Text(
'Ready to scan for Rimworld mods.',
'Ready to scan for RimWorld mods.',
style: Theme.of(context).textTheme.bodyLarge,
),
const SizedBox(height: 12),