aman-satu-flutter/lib/views/work/tabs/buy_view.dart

20 lines
473 B
Dart

import 'package:flutter/material.dart';
import '../../../widgets/bar/products_app_bar.dart';
class BuyView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: ProductsAppBar(title: 'Покупка',),
body: Center(
child: Text(
'Index 2: School',
style: TextStyle(
fontWeight: FontWeight.w600, color: Colors.black, fontSize: 15),
),
),
);
}
}