mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
Refine styling
This commit is contained in:
parent
668079474b
commit
cee9747d1f
2 changed files with 4 additions and 10 deletions
|
@ -100,17 +100,10 @@ class _RootPickerState extends State<RootPicker> {
|
|||
Expanded(
|
||||
child: Align(
|
||||
alignment: Alignment.center,
|
||||
child: Container(
|
||||
constraints: const BoxConstraints(
|
||||
maxWidth: AppTheme.widthLimitedContentMaxWidth),
|
||||
// needed otherwise no ripple effect
|
||||
child: _buildList(context),
|
||||
),
|
||||
child: _buildList(context),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
constraints: const BoxConstraints(
|
||||
maxWidth: AppTheme.widthLimitedContentMaxWidth),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import 'package:flutter/foundation.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
|
||||
|
@ -61,7 +62,7 @@ class _SignInState extends State<SignIn> {
|
|||
child: _buildForm(context),
|
||||
),
|
||||
),
|
||||
Expanded(child: Container()),
|
||||
if (!kIsWeb) Expanded(child: Container()),
|
||||
Container(
|
||||
constraints: const BoxConstraints(
|
||||
maxWidth: AppTheme.widthLimitedContentMaxWidth),
|
||||
|
|
Loading…
Reference in a new issue