123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- import 'package:flutter/material.dart';
- import 'package:turquessa_mesas_hoster/utils/widgets/custom_appbar.dart';
- import 'package:turquessa_mesas_hoster/utils/widgets/navigation_rail.dart';
- class CreacionPedido extends StatefulWidget {
- const CreacionPedido({super.key});
- @override
- State<CreacionPedido> createState() => _CreacionPedidoState();
- }
- class _CreacionPedidoState extends State<CreacionPedido> {
- final _selectedIndex = 0;
- @override
- Widget build(BuildContext context) {
- return Container(
- decoration: const BoxDecoration(
- gradient: LinearGradient(
- begin: Alignment.bottomRight,
- end: Alignment.topLeft,
- colors: [
- Color(0xFF7FD4D4),
- Color(0xFFE5E5E5),
- Color(0xFFFFFFFF),
- ])),
- child: Scaffold(
- backgroundColor: Colors.transparent,
- appBar: AppBar(
- title: const CustomAppbar(),
- ),
- body: Row(
- children: [
- CustomNavigationRail(selectedIndex: _selectedIndex),
- Expanded(
- flex: 5,
- child: Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(20),
- color: Colors.white,
- ),
- child: Column(
- children: [
- const CategoryFilters(),
- Expanded(
- child: Container(
- padding: const EdgeInsets.all(8),
- child: GridView.builder(
- gridDelegate:
- const SliverGridDelegateWithFixedCrossAxisCount(
- crossAxisCount: 4,
- crossAxisSpacing: 10,
- mainAxisSpacing: 10,
- ),
- itemCount: 20,
- itemBuilder: (context, index) {
- return Container(
- decoration: BoxDecoration(
- color: Colors.grey.shade200,
- borderRadius: BorderRadius.circular(20),
- ),
- child: Center(
- child: Text(
- 'Item $index',
- style: const TextStyle(fontSize: 20),
- ),
- ),
- );
- },
- ),
- ),
- ),
- ],
- ),
- ),
- ),
- Expanded(
- flex: 3,
- child: Container(
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(20),
- color: Colors.white,
- ),
- child: const Text("test"),
- ),
- )
- ],
- ),
- ),
- );
- }
- }
- class CategoryFilters extends StatefulWidget {
- const CategoryFilters({super.key});
- @override
- State<CategoryFilters> createState() => CategoryFiltersState();
- }
- class CategoryFiltersState extends State<CategoryFilters> {
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: const EdgeInsets.all(8),
- decoration: BoxDecoration(
- border: Border(bottom: BorderSide(color: Colors.grey.shade300)),
- ),
- child: Row(
- children: [
- // Buscador
- Expanded(
- child: Container(
- height: 40,
- padding: const EdgeInsets.symmetric(horizontal: 12),
- decoration: BoxDecoration(
- color: Colors.grey.shade200,
- borderRadius: BorderRadius.circular(20),
- ),
- child: Row(
- children: [
- Icon(Icons.search, color: Colors.grey.shade600),
- const SizedBox(width: 8),
- Text('Buscar', style: TextStyle(color: Colors.grey.shade600)),
- ],
- ),
- ),
- ),
- const SizedBox(width: 10),
- // Botones de filtro
- _FilterButtonPLaceHolder('Categoría'),
- const SizedBox(width: 10),
- _FilterButtonPLaceHolder('Topics'),
- const SizedBox(width: 10),
- _FilterButtonPLaceHolder('Extras'),
- ],
- ),
- );
- }
- }
- Widget _FilterButtonPLaceHolder(String text) {
- return Container(
- padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 10),
- decoration: BoxDecoration(
- color: Colors.grey.shade200,
- borderRadius: BorderRadius.circular(4),
- ),
- child: Text(text, style: const TextStyle(fontSize: 16)),
- );
- }
|