import 'package:gecko/globals.dart'; import 'package:flutter/material.dart'; class TemplateScreen extends StatelessWidget { const TemplateScreen({Key? key}) : super(key: key); @override Widget build(BuildContext context) { // final _homeProvider = Provider.of(context); return Scaffold( backgroundColor: backgroundColor, appBar: AppBar( toolbarHeight: 60 * ratio, title: const SizedBox( height: 22, child: Text('Template screen'), )), body: SafeArea( child: Column(children: const [ SizedBox(height: 20), Text('data'), SizedBox(height: 20), ]), )); } }