Skip to content
View vabym8's full-sized avatar
🎯
Fluttering!
🎯
Fluttering!

Block or report vabym8

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Bit_Class_Flutter Bit_Class_Flutter Public

    Bit Class Flutter

    Dart

  2. Creating a custom Flutter DropDown b... Creating a custom Flutter DropDown button as a separate widget
    1
    import 'package:flutter/material.dart';
    2
    
                  
    3
    class TestPage extends StatefulWidget {
    4
      @override
    5
      _TestPageState createState() => _TestPageState();
  3. Iterate through json file to find th... Iterate through json file to find the keys and values in dart : Flutter
    1
    var resData = json.decode(response.body);
    2
    Map myMap = resData;
    3
    
                  
    4
    myMap.forEach((key, value) {
    5
      print('$key : $value');