Button with function

simple button that button has function base, we can pass the function

sample code


 void incrementCounter() {
    print("hellow");
  }

     ButtonCustomer(
          borderRadius:12,
          buttonName:"Increment",
          buttonColor:Colors.black54,
          customFunction:incrementCounter,
     )


Libraries

logger_imogy