Skip to content

Instantly share code, notes, and snippets.

View palcodes's full-sized avatar
🦾
it's the humans that matter

Aayush Pal palcodes

🦾
it's the humans that matter
View GitHub Profile
@palcodes
palcodes / interests.dart
Last active January 11, 2020 15:46
Code for live updating listView
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
class Interests extends StatefulWidget {
@override
_InterestsState createState() => _InterestsState();
}
class _InterestsState extends State<Interests> {
List<String> interests = new List();