import 'package:flutter/material.dart'; class ProfessionalScheduleScreen extends StatefulWidget { const ProfessionalScheduleScreen({super.key}); @override State createState() => _ProfessionalScheduleScreenState(); } class _ProfessionalScheduleScreenState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Horario'), ), body: SingleChildScrollView( child: Column( children: [ Row( children: [ Expanded( child: Text( 'Lunes', style: TextStyle( fontSize: 17, fontWeight: FontWeight.w500, color: Colors.black, ), ), ), Switch( value: false, onChanged: (value) { setState(() {}); }, ), ], ), ], ), ), ); } }