Skip to content

Instantly share code, notes, and snippets.

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

  • Save CoderJava/59b6f80b8ec3c95b7d0e9ddc07c1a092 to your computer and use it in GitHub Desktop.

Select an option

Save CoderJava/59b6f80b8ec3c95b7d0e9ddc07c1a092 to your computer and use it in GitHub Desktop.
simple input chip with circle avatar
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'),
onPressed: () {
debugPrint('input chip tapped');
},
avatar: CircleAvatar(
backgroundImage: NetworkImage('http://api.bengkelrobot.net:8001/assets/images/yudi.jpeg'),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment