import 'package:flutter/material.dart'; import 'package:cake_wallet/palette.dart'; class HeaderTile extends StatelessWidget { HeaderTile({ @required this.onTap, @required this.title, @required this.icon }); final VoidCallback onTap; final String title; final Icon icon; @override Widget build(BuildContext context) { return GestureDetector( onTap: onTap, child: Container( padding: EdgeInsets.only( left: 24, right: 24, top: 32, bottom: 32 ), color: Colors.transparent, child: Row( mainAxisSize: MainAxisSize.max, mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ Text( title, style: TextStyle( fontSize: 18, fontWeight: FontWeight.bold, color: Colors.white ), ), Container( height: 32, width: 32, decoration: BoxDecoration( shape: BoxShape.circle, color: PaletteDark.menuList ), child: icon, ) ], ), ), ); } }