Questions tagged [statelesswidget]
121 questions
-6
votes
1 answer
What does it mean in Flutter?
1.const GreenFrog({ Key key }) : super(key: key);,
2.@override ,
3.Widget build(BuildContext context)
what does these three things referring to?
class GreenFrog extends StatelessWidget {
const GreenFrog({ Key key }) : super(key: key);
…

Ramil
- 11