mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
44 lines
1.3 KiB
Dart
44 lines
1.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:radix_colors/radix_colors.dart';
|
|
|
|
import '../providers/window_control.dart';
|
|
|
|
class IndexPage extends ConsumerWidget {
|
|
const IndexPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
ref.watch(windowControlProvider);
|
|
|
|
return Scaffold(
|
|
body: DecoratedBox(
|
|
decoration: BoxDecoration(
|
|
gradient: LinearGradient(
|
|
begin: Alignment.topCenter,
|
|
end: Alignment.bottomCenter,
|
|
colors: <Color>[
|
|
RadixColors.dark.plum.step4,
|
|
RadixColors.dark.plum.step2,
|
|
])),
|
|
child: Center(
|
|
child: ConstrainedBox(
|
|
constraints: const BoxConstraints(maxHeight: 300),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Expanded(
|
|
flex: 2,
|
|
child: SvgPicture.asset(
|
|
'assets/images/icon.svg',
|
|
)),
|
|
Expanded(
|
|
child: SvgPicture.asset(
|
|
'assets/images/title.svg',
|
|
))
|
|
]))),
|
|
));
|
|
}
|
|
}
|