mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-07-22 14:10:37 -04:00
theming work, revamp contact invitation
This commit is contained in:
parent
3c95c9d1a3
commit
ae841ec42a
26 changed files with 504 additions and 507 deletions
|
@ -1,4 +1,3 @@
|
|||
import 'package:awesome_extensions/awesome_extensions.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../theme.dart';
|
||||
|
@ -13,7 +12,7 @@ class StyledScaffold extends StatelessWidget {
|
|||
final scaleConfig = theme.extension<ScaleConfig>()!;
|
||||
final scale = scaleScheme.scale(ScaleKind.primary);
|
||||
|
||||
final enableBorder = !isMobileSize(context);
|
||||
const enableBorder = false; //!isMobileSize(context);
|
||||
|
||||
var scaffold = clipBorder(
|
||||
clipEnabled: enableBorder,
|
||||
|
@ -28,7 +27,7 @@ class StyledScaffold extends StatelessWidget {
|
|||
|
||||
return GestureDetector(
|
||||
onTap: () => FocusManager.instance.primaryFocus?.unfocus(),
|
||||
child: scaffold.paddingAll(enableBorder ? 32 : 0));
|
||||
child: scaffold /*.paddingAll(enableBorder ? 32 : 0) */);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue