passo_mobile_app/lib/widgets/Leadings/add_leading.dart

13 lines
411 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter/src/widgets/framework.dart';
import 'package:flutter/src/widgets/placeholder.dart';
class AddLeading extends StatelessWidget {
final Function() onPressed;
const AddLeading({super.key, required this.onPressed});
@override
Widget build(BuildContext context) {
return IconButton(onPressed: onPressed, icon: const Icon(Icons.add));
}
}