Initial Commit
This commit is contained in:
38
web_native/lib/screens/template_screen.dart.template
Normal file
38
web_native/lib/screens/template_screen.dart.template
Normal file
@@ -0,0 +1,38 @@
|
||||
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));
|
||||
// }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user