moved editing page to popup
All checks were successful
Build CI / AMD64 Build (push) Successful in 1m54s
All checks were successful
Build CI / AMD64 Build (push) Successful in 1m54s
This commit is contained in:
@@ -14,7 +14,7 @@ class EditorEditor extends StatelessWidget {
|
||||
return Scaffold(
|
||||
appBar: AppBar(title: Text("/ PROject Dashboard / Editors")),
|
||||
floatingActionButton: EditorFAB(),
|
||||
body: gm.lenEdt - 1 > 0
|
||||
body: gm.lenEdt > 0
|
||||
? LayoutBuilder(
|
||||
builder: (context, constraints) {
|
||||
int cols = (constraints.maxWidth / 250).floor();
|
||||
@@ -25,7 +25,7 @@ class EditorEditor extends StatelessWidget {
|
||||
mainAxisSpacing: 10,
|
||||
childAspectRatio: 1.5,
|
||||
),
|
||||
itemCount: gm.lenEdt - 1,
|
||||
itemCount: gm.lenEdt,
|
||||
itemBuilder: (context, index) => EditorCard(index),
|
||||
);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user