first commit
This commit is contained in:
commit
faf67cc6d8
148 changed files with 6580 additions and 0 deletions
16
lib/ui/sell_page/sell_page.dart
Normal file
16
lib/ui/sell_page/sell_page.dart
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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."));
|
||||
}
|
||||
}
|
||||
Reference in a new issue