21 lines
427 B
Dart
21 lines
427 B
Dart
|
import 'package:cdb_ui/api.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class TransactionPage extends StatelessWidget {
|
||
|
late Transaction transaction;
|
||
|
|
||
|
TransactionPage(this.transaction);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
body: Column(
|
||
|
children: [
|
||
|
// todo : transaction properties
|
||
|
// todo : chart with price history
|
||
|
],
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|