Testing/lib/screens/business_sreeen.dart

16 lines
298 B
Dart
Raw Normal View History

2020-06-27 18:46:23 +07:00
import 'package:flutter/material.dart';
class BusinessScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.red,
title: Text('News'),
centerTitle: true,
),
);
}
}