* Screen * active_button.dart class ActiveButton extends StatefulWidget { final EdgeInsets padding; final dynamic onPressed; final String title; bool isActive; final Color activeColor; final Color inativeColor; ActiveButton({ Key? key, this.padding = const EdgeInsets.symmetric( vertical: 15, horizontal: 20), required this.onPressed, this.title = 'ActiveButton', this.isActive = true, this.activeC..