titleWidget method

Widget titleWidget(
  1. String? value
)

Implementation

Widget titleWidget(String? value) {
  return (value == null)
      ? const SizedBox()
      : Center(
        child: Text(
          value,
          style: TextStyle(
            fontWeight: FontWeight.bold,
            fontSize: 20.0,
            color: theme.primaryColor(),
          ),
        ),
      );
}