copy_with_material 1.0.0
copy_with_material: ^1.0.0 copied to clipboard
Copy with method extensions for material classes
Adds copyWith method extensions for material widgets. This project is a work in progress.
Example #
import 'package:copy_with_material/copy_with_material.dart';
void main() {
AppBar appBar = AppBar(
title: Text("Title"),
actions: [IconButton(icon: Icon(Icons.search), onPressed: () {})],
);
AppBar newAppBar = appBar.copyWith(
title: Text("New Title"),
);
}