fixedTitle method

Widget fixedTitle(
  1. BuildContext context
)

Implementation

Widget fixedTitle(BuildContext context) {
  return Center(
    child: Column(children: <Widget>[
      Text(widget.langSignUp,
          style: TextStyle(
              fontSize: 32, color: Theme.of(context).primaryColor))
    ]),
  );
}