mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-06 20:19:30 +01:00
66 lines
2.0 KiB
Dart
66 lines
2.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import 'package:fluffychat/config/app_config.dart';
|
|
import 'package:fluffychat/config/themes.dart';
|
|
|
|
class LoginScaffold extends StatelessWidget {
|
|
final Widget body;
|
|
final AppBar? appBar;
|
|
|
|
const LoginScaffold({
|
|
Key? key,
|
|
required this.body,
|
|
this.appBar,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final isMobileMode = !FluffyThemes.isColumnMode(context);
|
|
final scaffold = Scaffold(
|
|
backgroundColor: isMobileMode ? null : Colors.transparent,
|
|
appBar: appBar == null
|
|
? null
|
|
: AppBar(
|
|
titleSpacing: appBar?.titleSpacing,
|
|
automaticallyImplyLeading:
|
|
appBar?.automaticallyImplyLeading ?? true,
|
|
centerTitle: appBar?.centerTitle,
|
|
title: appBar?.title,
|
|
leading: appBar?.leading,
|
|
actions: appBar?.actions,
|
|
backgroundColor: isMobileMode ? null : Colors.transparent,
|
|
),
|
|
extendBodyBehindAppBar: true,
|
|
extendBody: true,
|
|
body: body,
|
|
);
|
|
if (isMobileMode) return scaffold;
|
|
return Container(
|
|
decoration: const BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('assets/login_wallpaper.png'),
|
|
fit: BoxFit.cover,
|
|
),
|
|
),
|
|
child: Center(
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16.0),
|
|
child: Material(
|
|
color: Theme.of(context).scaffoldBackgroundColor.withOpacity(0.925),
|
|
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
|
|
clipBehavior: Clip.hardEdge,
|
|
elevation: 10,
|
|
shadowColor: Colors.black,
|
|
child: ConstrainedBox(
|
|
constraints: isMobileMode
|
|
? const BoxConstraints()
|
|
: const BoxConstraints(maxWidth: 480, maxHeight: 640),
|
|
child: scaffold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|