|
|
|
|
@ -31,7 +31,6 @@ class _CommonAppbarState extends State<CommonAppbar> {
|
|
|
|
|
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
|
|
|
|
|
List<QuickLinksData> quickLinks = [];
|
|
|
|
|
List<NavigationDataModel> navigationList = [];
|
|
|
|
|
ContentInfoDataModel _copyRight;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
void initState() {
|
|
|
|
|
@ -153,6 +152,12 @@ class _CommonAppbarState extends State<CommonAppbar> {
|
|
|
|
|
elevation: 0,
|
|
|
|
|
child: Container(
|
|
|
|
|
color: Colors.white,
|
|
|
|
|
child: SafeArea(
|
|
|
|
|
bottom: true,
|
|
|
|
|
top: false,
|
|
|
|
|
right: false,
|
|
|
|
|
left: false,
|
|
|
|
|
maintainBottomViewPadding: true,
|
|
|
|
|
child: Column(
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
@ -264,7 +269,6 @@ class _CommonAppbarState extends State<CommonAppbar> {
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
if (_copyRight != null)
|
|
|
|
|
Padding(
|
|
|
|
|
padding: EdgeInsets.only(left: 32, right: 32, bottom: 8),
|
|
|
|
|
child: Row(
|
|
|
|
|
@ -285,6 +289,7 @@ class _CommonAppbarState extends State<CommonAppbar> {
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|