22 lines
924 B
Dart
22 lines
924 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:oc_front/core/models/workspace_local.dart';
|
|
import 'package:oc_front/main.dart';
|
|
import 'package:oc_front/models/search.dart';
|
|
import 'package:oc_front/widgets/items/item_row.dart';
|
|
|
|
class CatalogWidget extends StatefulWidget {
|
|
double? itemWidth;
|
|
bool readOnly = false;
|
|
final List<AbstractItem>? items;
|
|
CatalogWidget ({ Key? key, this.items, this.itemWidth, this.readOnly = false }): super(key: key);
|
|
@override CatalogWidgetState createState() => CatalogWidgetState();
|
|
}
|
|
class CatalogWidgetState extends State<CatalogWidget> {
|
|
@override Widget build(BuildContext context) {
|
|
var items = widget.items ?? WorkspaceLocal.items;
|
|
List<ItemRowWidget> itemRows = items.map((e) => ItemRowWidget(
|
|
readOnly: widget.readOnly,
|
|
contextWidth: widget.itemWidth ?? getMainWidth(context), item: e)).toList();
|
|
return Column( children: itemRows);
|
|
}
|
|
} |