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/template_screen.dart.template

39 lines
714 B
Plaintext
Raw Normal View History

2021-02-11 20:47:42 +00:00
import 'package:flutter/material.dart';
class TemplatesScreen extends StatefulWidget {
static const String PATH = '/Templates';
TemplatesScreen({Key key}) : super(key: key);
@override
_TemplatesScreenState createState() => _TemplatesScreenState();
}
class _TemplatesScreenState extends State<TemplatesScreen> {
// TemplatesBloc bloc;
@override
void dispose() {
super.dispose();
// bloc.dispose();
}
@override
Widget build(BuildContext context) {
_init();
return Scaffold(
body: Center(
child: Text("Templates")
),
);
}
void _init(){
// if(null == bloc){
// bloc = TemplatesBloc(AppProvider.getApplication(context));
// }
}
}