Skip to content

Commit

Permalink
feat: enhance UI for better consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
gokadzev committed Feb 15, 2025
1 parent a06470f commit ec171dd
Show file tree
Hide file tree
Showing 10 changed files with 288 additions and 216 deletions.
7 changes: 4 additions & 3 deletions lib/screens/about_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import 'package:fluentui_system_icons/fluentui_system_icons.dart';
import 'package:flutter/material.dart';
import 'package:musify/API/version.dart';
import 'package:musify/extensions/l10n.dart';
import 'package:musify/utilities/common_variables.dart';
import 'package:musify/utilities/url_launcher.dart';

class AboutPage extends StatelessWidget {
Expand All @@ -33,10 +34,11 @@ class AboutPage extends StatelessWidget {
return Scaffold(
appBar: AppBar(title: Text(context.l10n!.about)),
body: SingleChildScrollView(
padding: commonSingleChildScrollViewPadding,
child: Column(
children: <Widget>[
Padding(
padding: const EdgeInsets.fromLTRB(8, 17, 8, 0),
padding: const EdgeInsets.symmetric(vertical: 15),
child: Text(
'Musify | $appVersion',
style: TextStyle(
Expand All @@ -48,9 +50,8 @@ class AboutPage extends StatelessWidget {
textAlign: TextAlign.center,
),
),
const Divider(color: Colors.white24, thickness: 0.8, height: 50),
const Divider(color: Colors.white24, thickness: 0.8, height: 20),
Card(
margin: const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
child: ListTile(
contentPadding: const EdgeInsets.all(8),
leading: Container(
Expand Down
Loading

0 comments on commit ec171dd

Please sign in to comment.