Skip to content

Instantly share code, notes, and snippets.

@anish-adm
anish-adm / php_zmq_installation.md
Last active October 28, 2020 00:16 — forked from icanhazstring/gist:71d974a58d2f35e8abc8
Install zmq centos 7
@anish-adm
anish-adm / custom_checkbox.dart
Created April 8, 2019 14:12
Custom designed checkbox for Flutter (takes Icon, Label, selected/not-selected background color and text color, height and width).
import 'package:flutter/material.dart';
import 'package:meta/meta.dart';
class CustomCheckBox extends StatefulWidget {
const CustomCheckBox(this.icon,this.label,
{Key key,
@required this.onSelect,
this.selectedBackgroundColor,
this.notSelectedBackgroundColor,
this.selectedTextColor,