feat: search ui change
This commit is contained in:
parent
99c43cc3ef
commit
a292114d68
1 changed files with 5 additions and 1 deletions
|
@ -259,7 +259,11 @@ class _HomePageState extends State<HomePage> {
|
|||
children: [
|
||||
Expanded(
|
||||
child: _filteredCodes.isNotEmpty
|
||||
? ListView.builder(
|
||||
? AlignedGridView.count(
|
||||
crossAxisCount:
|
||||
(MediaQuery.sizeOf(context).width ~/ 400)
|
||||
.clamp(1, double.infinity)
|
||||
.toInt(),
|
||||
itemBuilder: ((context, index) {
|
||||
Code? code;
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue