You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
Dart
41 lines
1.1 KiB
Dart
import 'package:car_customer_app/theme/colors.dart';
|
|
import 'package:car_customer_app/utils/utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:car_customer_app/extensions/string_extensions.dart';
|
|
import 'package:car_customer_app/extensions/int_extensions.dart';
|
|
|
|
|
|
class ShowImageButton extends StatelessWidget {
|
|
String icon, title;
|
|
VoidCallback onClick;
|
|
|
|
ShowImageButton(
|
|
{required this.icon, required this.title, required this.onClick});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return InkWell(
|
|
onTap: onClick,
|
|
child: Container(
|
|
width: double.infinity,
|
|
child: Column(
|
|
children: [
|
|
Container(
|
|
width: double.infinity,
|
|
height: 120,
|
|
color: accentColor,
|
|
padding: EdgeInsets.all(30),
|
|
child: Image.asset(
|
|
icon,
|
|
color: Colors.white,
|
|
),
|
|
),
|
|
12.height,
|
|
title.toText(color: Colors.blue,isBold: true,fontSize: 18),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|