fix: 搜索框超长内容限制

This commit is contained in:
orz12
2024-02-22 17:06:46 +08:00
parent 3ed8dcc8ac
commit dff44c5f69

View File

@@ -371,7 +371,8 @@ class SearchBar extends StatelessWidget {
color: colorScheme.onSecondaryContainer, color: colorScheme.onSecondaryContainer,
), ),
const SizedBox(width: 10), const SizedBox(width: 10),
Obx( Expanded(
child: Obx(
() => Text( () => Text(
ctr!.defaultSearch.value, ctr!.defaultSearch.value,
maxLines: 1, maxLines: 1,
@@ -379,6 +380,7 @@ class SearchBar extends StatelessWidget {
style: TextStyle(color: colorScheme.outline), style: TextStyle(color: colorScheme.outline),
), ),
), ),
),
], ],
), ),
), ),