19 lines
381 B
Dart
19 lines
381 B
Dart
import 'package:app/features/home/pages/main_page.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class MainPageState extends State<MainPage> {
|
|
|
|
int count = 0;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(count.toString()),
|
|
backgroundColor: Colors.blue,
|
|
),
|
|
body: widget.child
|
|
);
|
|
}
|
|
|
|
} |