mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
17 lines
315 B
Dart
17 lines
315 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TableViewCell extends StatelessWidget {
|
|
const TableViewCell({
|
|
Key? key,
|
|
required this.flex,
|
|
required this.child,
|
|
}) : super(key: key);
|
|
|
|
final int flex;
|
|
final Widget child;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return child;
|
|
}
|
|
}
|