Skip to content

Instantly share code, notes, and snippets.

@CoderJava
Created October 3, 2020 11:37
Show Gist options
  • Select an option

  • Save CoderJava/1949a3345c58ed45a26ae815d5e87b85 to your computer and use it in GitHub Desktop.

Select an option

Save CoderJava/1949a3345c58ed45a26ae815d5e87b85 to your computer and use it in GitHub Desktop.
Simple input chip
import 'package:flutter/material.dart';
class InputChipExample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Input Chip'),
),
body: InputChip(
label: Text('coderkotlin@gmail.com'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment