text method

Widget text(
  1. dynamic text,
  2. double size,
  3. dynamic color,
  4. dynamic weight,
)

Implementation

Widget text(text, double size, color, weight) {
  return Text(
    text,
    textAlign: TextAlign.justify,
    style: TextStyle(fontSize: size, fontWeight: weight, color: color),
  );
}