mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-04 23:03:22 +00:00
14 lines
342 B
Dart
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');
|
|
}
|
|
}
|