commit 87dbf78d98e6393d2b030bce7bf50afbe349d28c
parent 10d08e248ef1f67820ad79cc69f79ad6b8ef90ef
Author: aditya-samal <samaladitya2004@gmail.com>
Date: Tue, 2 Dec 2025 04:28:00 +0530
Fixed Screens
Diffstat:
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/lib/ui/pages/project_file_page.dart b/lib/ui/pages/project_file_page.dart
@@ -455,7 +455,7 @@ class _ProjectFilePageState extends State<ProjectFilePage> {
),
);
},
- hideDropdown: true,
+ hideSecondRow: true,
onSettingsPressed: () {},
onLayoutToggle: () {},
isAlternateView: false,
diff --git a/lib/ui/pages/stylesheet_page.dart b/lib/ui/pages/stylesheet_page.dart
@@ -213,7 +213,7 @@ class _StylesheetPageState extends State<StylesheetPage> {
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
- "Are you ready to start building\nthe visual identity",
+ "Are you ready to start building\nyour stylesheet",
style: Variables.headerStyle.copyWith(fontSize: 18),
textAlign: TextAlign.center,
),
@@ -266,11 +266,6 @@ class _StylesheetPageState extends State<StylesheetPage> {
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
- Padding(
- padding: const EdgeInsets.symmetric(horizontal: 20),
- child: const Text("Visual Identity", style: TextStyle(fontFamily: 'GeneralSans', fontSize: 24, fontWeight: FontWeight.w600)),
- ),
- const SizedBox(height: 32),
if (foundAny) ...[
if (hasAssets) _buildAssetsSection(_projectAssets),