41 lines
1.0 KiB
Dart
41 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../../common/theme/theme.dart';
|
|
|
|
class QtyButton extends StatelessWidget {
|
|
const QtyButton({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
children: [
|
|
InkWell(
|
|
child: Container(
|
|
height: 35,
|
|
width: 35,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(4),
|
|
border: Border.all(width: 1, color: AppColor.border),
|
|
),
|
|
child: Icon(Icons.remove),
|
|
),
|
|
),
|
|
SizedBox(width: 12),
|
|
Text('1', style: AppStyle.lg.copyWith(fontWeight: FontWeight.bold)),
|
|
SizedBox(width: 12),
|
|
InkWell(
|
|
child: Container(
|
|
height: 35,
|
|
width: 35,
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(4),
|
|
border: Border.all(width: 1, color: AppColor.border),
|
|
),
|
|
child: Icon(Icons.add),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|