Compare commits
1 Commits
build-2026
...
apk-overfl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
84d649ac6d |
@@ -1016,7 +1016,8 @@ class _MosaicHomePageState extends State<MosaicHomePage>
|
|||||||
itemCount: _catalog.length,
|
itemCount: _catalog.length,
|
||||||
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
|
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
|
||||||
crossAxisCount: 2,
|
crossAxisCount: 2,
|
||||||
childAspectRatio: 1.2,
|
// Mehr vertikaler Platz pro Card, damit Name/Hex/Delete nicht überlaufen.
|
||||||
|
childAspectRatio: 0.92,
|
||||||
mainAxisSpacing: 8,
|
mainAxisSpacing: 8,
|
||||||
crossAxisSpacing: 8,
|
crossAxisSpacing: 8,
|
||||||
),
|
),
|
||||||
@@ -1051,10 +1052,13 @@ class _MosaicHomePageState extends State<MosaicHomePage>
|
|||||||
const Spacer(),
|
const Spacer(),
|
||||||
IconButton(
|
IconButton(
|
||||||
visualDensity: VisualDensity.compact,
|
visualDensity: VisualDensity.compact,
|
||||||
|
padding: EdgeInsets.zero,
|
||||||
|
constraints:
|
||||||
|
const BoxConstraints.tightFor(width: 30, height: 30),
|
||||||
onPressed: _catalog.length <= 1
|
onPressed: _catalog.length <= 1
|
||||||
? null
|
? null
|
||||||
: () => _deleteEntry(entry),
|
: () => _deleteEntry(entry),
|
||||||
icon: const Icon(Icons.delete_outline),
|
icon: const Icon(Icons.delete_outline, size: 20),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user