import 'package:diplomaticquarterapp/theme/colors.dart'; import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart'; import 'package:flutter/material.dart'; class StartButton extends StatelessWidget { final void Function() onPressed; final bool disabled; const StartButton({ Key? key, required this.onPressed, required this.disabled, }) : super(key: key); @override Widget build(BuildContext context) { return Padding( padding: const EdgeInsets.only(right: 16.0, bottom: 32), child: Expanded( child: ElevatedButton( onPressed: (disabled) ? () {} : onPressed, style: ElevatedButton.styleFrom( shape: const CircleBorder(), backgroundColor: (disabled) ? Colors.grey : CustomColors.accentColor, elevation: 8, ), child: Text( TranslationBase.of(context).start, style: TextStyle( fontSize: 14, ), ), ), ), ); } }