update
This commit is contained in:
parent
bda39a56d0
commit
37a855cc6c
21 changed files with 176 additions and 226 deletions
|
|
@ -107,20 +107,15 @@ class _ListStocksPageState extends State<ListStocksPage> {
|
|||
))
|
||||
else if (_stockList.isEmpty)
|
||||
Container(
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(color: const Color.fromRGBO(205, 59, 208, 0.702), width: 2),
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 16.0),
|
||||
child: Text(
|
||||
'No Stock Listed',
|
||||
style: GoogleFonts.outfit(
|
||||
color: const Color.fromRGBO(255, 255, 255, 1),
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.normal,
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(color: const Color.fromRGBO(205, 59, 208, 0.702), width: 2),
|
||||
borderRadius: BorderRadius.circular(12),
|
||||
),
|
||||
),
|
||||
)
|
||||
padding: const EdgeInsets.symmetric(horizontal: 32, vertical: 16.0),
|
||||
child: const TextWidget(
|
||||
text: 'No Stock Listed',
|
||||
size: 14,
|
||||
))
|
||||
else
|
||||
DataTableWidget(
|
||||
column: _createColumns(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue