Provider pattern is recommended by the flutter team at Google . They also covered it at Google I/O 2019 in Pragmatic State Management in Flutter. Some other patterns such as BLoC Architecture use provider pattern internally. But the provider pattern is far easier to learn and has much less boilerplate code.
Read moreGestures Flutter nedir?
GestureDetector , içine aldığı widgetin ( mesela Container ) bulunduğu bölgeye tıklayınca bir eylem yaratmasını sağlar. Bir nevi buton diyebiliriz.
Read moreFlutter Provider ne işe yarar?
Provider , basitçe kendi state’i olan ve bu state’i BuildContext (BuildContext az ve öz bir şekilde bir widget’in Widget Tree’de nerede olduğunu anlamasını sağlayan ve parent-child arası data geçişine yarayan yapımızdır kendisi.) ile kendi çocuklarına aktarabilen bir widget.
Read more