同步 oneApp 的代码

This commit is contained in:
2025-09-17 15:09:05 +08:00
parent 62924296b2
commit 33aef48f84
21 changed files with 597 additions and 186 deletions

View File

@@ -1,4 +1,3 @@
import 'package:ai_chat_assistant/utils/assets_util.dart';
import 'package:flutter/material.dart';
import 'dart:ui';
import '../widgets/chat_box.dart';
@@ -127,18 +126,14 @@ class _PartScreenState extends State<PartScreen> {
children: [
Padding(
padding: const EdgeInsets.only(
top: 50,
left: 6,
right: 6,
bottom: 30),
top: 50, left: 6, right: 6, bottom: 30),
child: LayoutBuilder(
builder: (context, boxConstraints) {
return ChatBox(
scrollController: _scrollController,
messages: messageService.messages,
);
}
),
builder: (context, boxConstraints) {
return ChatBox(
scrollController: _scrollController,
messages: messageService.messages,
);
}),
),
Positioned(
top: 6,