Hocam daha net anlatmak için iki farklı kod paylaşayım.
Bir sınıfın scaffold gövdesine farklı bir sınıf atayıp ilerleyince appbar veya bottomappbar gibi nesneleri güncelleyemiyorum. Daha doğrusu yöntemi bilmiyorum.
Örnek ;
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
bool bottomNavDurum = true;
@override
Widget build(BuildContext context) {
debugPrint(bottomNavDurum.toString());
return Scaffold(
appBar: AppBar(
title: Text("Home Page"),
backgroundColor: Colors.red,
),
body: SecondPageClass(),
bottomNavigationBar: bottomNavDurum
? BottomAppBar(
child:
Container(height: 50, child: Text("Custom Bottom Bar 1")),
color: Colors.red)
: BottomAppBar(
child:
Container(height: 50, child: Text("Custom Bottom Bar 2")),
color: Colors.yellowAccent));
}
barDegisim(){
setState(() {
bottomNavDurum = false;
});
}
}
class SecondPageClass extends StatefulWidget {
@override
_SecondPageClassState createState() => _SecondPageClassState();
}
class _SecondPageClassState extends State<SecondPageClass> {
@override
Widget build(BuildContext context) {
return Center(
child: Container(
child: RaisedButton(
child: Text("Button"),
color: Colors.orange,
onPressed: () {
_HomePageState().barDegisim();
}),
),
);
}
}
Fakat ilk sınıfın scaffold gövdesine yine aynı sınıftan devam edersem appbar, bottomappbar vb. nesneleri güncelleyebiliyorum.
Örnek,
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
bool bottomNavDurum = true;
@override
Widget build(BuildContext context) {
debugPrint(bottomNavDurum.toString());
return Scaffold(
appBar: AppBar(
title: Text("Home Page"),
backgroundColor: Colors.red,
),
body: secondPageMetod(),
bottomNavigationBar: bottomNavDurum
? BottomAppBar(
child:
Container(height: 50, child: Text("Custom Bottom Bar 1")),
color: Colors.red)
: BottomAppBar(
child:
Container(height: 50, child: Text("Custom Bottom Bar 2")),
color: Colors.yellowAccent));
}
secondPageMetod(){
return Center(
child: Container(
child: RaisedButton(
child: Text("Button"),
color: Colors.orange,
onPressed: () {
barDegisim();
}),
),
);
}
barDegisim(){
setState(() {
bottomNavDurum = false;
});
}
}