This repository has been archived on 2025-08-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Seshat/lib/ui/sell_page/sell_page.dart
2025-08-05 10:32:18 +02:00

16 lines
450 B
Dart

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:seshat/ui/core/ui/navigation_bar.dart';
class SellPage extends StatelessWidget {
const SellPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
bottomNavigationBar: AppNavigationBar(startIndex: 2),
body: Center(child: Text("Sell page.")),
);
// return Center(child: Text("Sell page."));
}
}