button1s3 function

dynamic button1s3(
  1. String text,
  2. String text2, {
  3. Decoration? decor,
  4. TextStyle? style,
})

Implementation

button1s3(String text, String text2, {Decoration? decor, TextStyle? style}) {
  return Container(
      margin: EdgeInsets.only(left: 10, right: 10),
      padding: EdgeInsets.only(left: 10, right: 10, top: 15, bottom: 15),
      decoration: decor,
      child: Column(
        children: [
          Text(text, style: style),
          SizedBox(height: 10,),
          Text(text2, style: aTheme.style12W400,)
        ],
      )
  );
}