fix: trim wasted desktop page bottom spacing

This commit is contained in:
Haitao Pan 2026-03-13 16:03:38 +08:00
parent 14280a5005
commit b1aaa1b8ee
6 changed files with 6 additions and 6 deletions

View File

@ -245,7 +245,7 @@ class _AppShellState extends State<AppShell> {
padding: const EdgeInsets.only(
top: 10,
right: 10,
bottom: 10,
bottom: 0,
),
child: AnimatedPadding(
duration: const Duration(milliseconds: 220),

View File

@ -28,7 +28,7 @@ class _AccountPageState extends State<AccountPage> {
animation: controller,
builder: (context, _) {
return SingleChildScrollView(
padding: const EdgeInsets.fromLTRB(32, 32, 32, 40),
padding: const EdgeInsets.fromLTRB(32, 32, 32, 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [

View File

@ -62,7 +62,7 @@ class _ModulesPageState extends State<ModulesPage> {
animation: controller,
builder: (context, _) {
return SingleChildScrollView(
padding: const EdgeInsets.fromLTRB(32, 32, 32, 40),
padding: const EdgeInsets.fromLTRB(32, 32, 32, 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [

View File

@ -35,7 +35,7 @@ class _SecretsPageState extends State<SecretsPage> {
animation: controller,
builder: (context, _) {
return SingleChildScrollView(
padding: const EdgeInsets.fromLTRB(32, 32, 32, 40),
padding: const EdgeInsets.fromLTRB(32, 32, 32, 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [

View File

@ -70,7 +70,7 @@ class _SettingsPageState extends State<SettingsPage> {
builder: (context, _) {
final settings = controller.settings;
return SingleChildScrollView(
padding: const EdgeInsets.fromLTRB(32, 32, 32, 40),
padding: const EdgeInsets.fromLTRB(32, 32, 32, 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [

View File

@ -67,7 +67,7 @@ class _TasksPageState extends State<TasksPage> {
animation: controller,
builder: (context, _) {
return SingleChildScrollView(
padding: const EdgeInsets.fromLTRB(32, 32, 32, 40),
padding: const EdgeInsets.fromLTRB(32, 32, 32, 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [