# flutter_app **Repository Path**: ziyouliulan/flutter_app ## Basic Information - **Project Name**: flutter_app - **Description**: 初始化 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master_demo - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-01-12 - **Last Updated**: 2025-02-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flutter_app A new Flutter project. ## Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: - [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab) - [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook) For help getting started with Flutter development, view the [online documentation](https://docs.flutter.dev/), which offers tutorials, samples, guidance on mobile development, and a full API reference. lib/ ├── config/ # 配置文件 │ ├── routes.dart # 路由配置 │ └── theme.dart # 主题配置 ├── core/ # 核心功能 │ ├── constants/ # 常量定义 │ ├── network/ # 网络请求 │ └── utils/ # 工具类 ├── data/ # 数据层 │ ├── models/ # 数据模型 │ │ ├── message.dart │ │ ├── user.dart │ │ └── chat.dart │ ├── repositories/ # 数据仓库 │ └── services/ # 服务 ├── features/ # 功能模块 │ ├── auth/ # 认证模块 │ │ ├── screens/ │ │ └── widgets/ │ ├── chat/ # 聊天模块 │ │ ├── screens/ │ │ └── widgets/ │ ├── contacts/ # 联系人模块 │ │ ├── screens/ │ │ └── widgets/ │ └── moments/ # 朋友圈模块 │ ├── screens/ │ └── widgets/ └── main.dart