RawChip Widget
Project Preview
- Interested in seeing the live demo? Click here to explore.
- Want to view the source code? Visit the project on GitHub.
Code Snippet
import 'package:flutter/material.dart';
class RawChipWidget extends StatelessWidget {
const RawChipWidget({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("RawChip Widget"),
),
body: Center(
child: RawChip(
label: const Text('RawChip'),
avatar: const Icon(Icons.person),
deleteIcon: const Icon(Icons.remove_circle),
onPressed: () {},
onDeleted: () {},
),
),
);
}
}