buildShowVersion method
Implementation
Widget buildShowVersion() {
return Positioned(
top: 15,
right: 15,
child: Center(
child: Text(
SharedAppConfig.fullVersion,
style: TextStyle(
fontSize: FontSizes.normal,
color: Colors.grey.shade600,
),
),
),
);
}