flutter scaffold footer center code example
Example: footer flutter
persistentFooterButtons: [
Container(
width: 900,
child: Text(
'This is a footer',
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
letterSpacing: 1,
),
),
)
],