14 lines
371 B
Dart
Raw Normal View History

2022-08-10 17:59:28 +08:00
import 'package:app_flowy/plugins/grid/application/row/row_cache.dart';
import 'package:flutter/material.dart';
class BoardCard extends StatelessWidget {
final RowInfo rowInfo;
2022-08-10 17:59:28 +08:00
const BoardCard({required this.rowInfo, Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
2022-08-12 16:06:30 +08:00
return const SizedBox(height: 20, child: Text('1234'));
2022-08-10 17:59:28 +08:00
}
}