ids_material_sdk 2.0.1 copy "ids_material_sdk: ^2.0.1" to clipboard
ids_material_sdk: ^2.0.1 copied to clipboard

ui related stuff and logical data manager

IDS Material Library

Pub.dev Badge Effective Dart Badge MIT License Badge Flutter Platform Badge

##IDS Material SDK

IDS Material SDK callbacks :

  • IDSMultiSelectDropDown;

Usage #

@override
Widget build(BuildContext context) =>
    IDSMultiSelectDropDown(
      limit: 3,
      onChanged: (List<String> x) {
        setState(() {
          selectedJobRole = x;
        });
      },
      options: jobRole ?? [],
      selectedValues: selectedJobRole,
      onLimitMessage: (limit) {
        APPHelper.showToast("You can only select 3 items");
      },
      whenEmpty: 'Select Job Role',
    );

Custom Drop down List array and string array usage #


 navigateToIDSDropDown(int code, String key, List<dynamic>? array) {
  showDialog(
      context: context,
      builder: (BuildContext context) {
        return Center(
          child: Dialog(
            shape: const RoundedRectangleBorder(
                borderRadius: BorderRadius.all(Radius.circular(10))),
            child: IDSDropDown(
              appBarBg:Color.red,
              requestedCode: code,
              jsonKeyName: key,
              dropDownArray: array,
              callback: (requestedCode, json) {
                if (requestedCode == 1) {
                  setState(() {
                    industryDropValue = json["name"];
                  });
                }

                if (requestedCode == 2) {
                  setState(() {
                    countryDropValue = json["name"];
                  });
                }
              },
            ),
          ),
        );
      });

  /*Navigator.push(
      context,
      MaterialPageRoute(
          builder: (context) =>
              IDSDropDown(
              appBarBg:Color.red,
                requestedCode: code,
                jsonKeyName: key,
                dropDownArray: array,
                callback: (requestedCode, json) {
                  if (requestedCode == 1) {
                    setState(() {
                      industryDropValue = json["name"];
                    });
                  }

                  if (requestedCode == 2) {
                    setState(() {
                      countryDropValue = json["name"];
                    });
                  }
                },
              ),
          fullscreenDialog: true),
    );*/
}




 navigateToIDSDropDownString(int code, List<String> array) {
    showDialog(
        context: context,
        builder: (BuildContext context) {
          return Center(
            child: Dialog(
              shape: const RoundedRectangleBorder(
                  borderRadius: BorderRadius.all(Radius.circular(10))),
              child: SizedBox(
                height: MediaQuery.of(context).size.width,
                child: IDSDropDownString(
                  appBarBg:Color.red,
                  requestedCode: code,
                  dropDownArray: array,
                  callback: (requestedCode, value) {
                    if (requestedCode == 1) {
                      setState(() {
                        employeeDropValue = value;
                      });
                    }
                  },
                ),
              ),
            ),
          );
        });

    /* Navigator.push(
      context,
      MaterialPageRoute(
          builder: (context) => IDSDropDownString(
          appBarBg:Color.red,
                requestedCode: code,
                dropDownArray: array,
                callback: (requestedCode, value) {
                  if (requestedCode == 1) {
                    setState(() {
                      employeeDropValue = value;
                    });
                  }
                },
              ),
          fullscreenDialog: true),
    );*/
  }

2
likes
70
pub points
29%
popularity

Publisher

unverified uploader

ui related stuff and logical data manager

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_html, html_unescape, states_rebuilder, xml

More

Packages that depend on ids_material_sdk