df02cff668
- Renamed BottomNavigation to TenderBottomNavigation for clarity. - Updated TendersScreen to use TenderBottomNavigation. - Converted TendersScreen from StatelessWidget to StatefulWidget to manage tab state. - Added TabController for handling tab changes and improved layout with SafeArea and PageView.
11 lines
225 B
Dart
11 lines
225 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LastTendersTab extends StatelessWidget {
|
|
const LastTendersTab({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(color: Colors.blue);
|
|
}
|
|
}
|