IM/frontend/app/lib/features/home/bloc/main_page_state.dart
nanxun ae99d3290f 后端:
1、事件订阅增加rabbitmq中间件
移动端:
1、完善移动端目录结构和代码框架
2026-01-28 18:19:45 +08:00

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