This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/web_native/lib/screens/me/mescreen.dart

46 lines
1.1 KiB
Dart
Raw Normal View History

2021-01-08 02:45:59 +00:00
import 'package:flutter/material.dart';
2021-01-23 16:57:07 +00:00
import 'package:imagini/screens/me/components/body.dart';
import 'package:imagini/screens/me/me-bloc.dart';
2021-01-08 02:45:59 +00:00
import 'package:imagini/bloc/bloc-prov.dart';
import 'package:flutter_platform_widgets/flutter_platform_widgets.dart';
2021-01-23 16:57:07 +00:00
class MeScreen extends StatefulWidget {
2021-01-08 02:45:59 +00:00
@override
2021-01-23 16:57:07 +00:00
_MeScreenState createState() => _MeScreenState();
2021-01-08 02:45:59 +00:00
}
2021-01-23 16:57:07 +00:00
class _MeScreenState extends State<MeScreen> {
MeBloc exampleBloc;
2021-01-08 02:45:59 +00:00
@override
void initState() {
super.initState();
2021-01-23 16:57:07 +00:00
exampleBloc = MeBloc();
2021-01-08 02:45:59 +00:00
}
@override
void dispose() {
exampleBloc.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return BlocProvider(
bloc: exampleBloc,
child: PlatformScaffold(
appBar: PlatformAppBar(
2021-01-23 16:57:07 +00:00
title: Text('Mes'),
2021-01-08 02:45:59 +00:00
cupertino: (_, __) => CupertinoNavigationBarData(
// Issue with cupertino where a bar with no transparency
// will push the list down. Adding some alpha value fixes it (in a hacky way)
backgroundColor: Colors.lightGreen.withAlpha(254),
),
),
body: Body(),
),
);
}
}