mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-24 09:26:49 +00:00
14 lines
358 B
Dart
14 lines
358 B
Dart
import 'package:app_flowy/plugins/grid/application/row/row_cache.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class BoardCard extends StatelessWidget {
|
|
final GridRowInfo rowInfo;
|
|
|
|
const BoardCard({required this.rowInfo, Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(child: Text('1234'));
|
|
}
|
|
}
|