13 lines
411 B
Dart
13 lines
411 B
Dart
|
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));
|
||
|
}
|
||
|
}
|