2022-08-11 15:11:57 +08:00

14 lines
342 B
Dart

import 'package:app_flowy/plugins/grid/application/row/row_cache.dart';
import 'package:flutter/material.dart';
class BoardCard extends StatelessWidget {
final RowInfo rowInfo;
const BoardCard({required this.rowInfo, Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Text('1234');
}
}