Testing/lib/screens/business_sreeen.dart
2020-06-27 18:46:23 +07:00

16 lines
298 B
Dart

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,
),
);
}
}