Flutter BLoC nedir?

Bloc pattern; Business Logic Component’in kısaltmasıdır. Flutter ‘ın UI reactive modelinden yararlanan, Flutter uygulamalarında durumu yönetmenin daha basit ve yeniden kullanılabilir bir yolu olarak düşünülebilir.

Read more

Flutter GetX nedir?

GetX , geliştiricilere daha kolay ve performanslı bir şekilde state management, navigation manager, internationalization ve tema kullanımı olanağı sunuyor. Ve bu sunduklarının hem performanslı olmasını hem de kolay bir şekilde uygulanmasını da sağlıyor. Kolaylığı sayesinde geliştiricilerin kalbini kısa sürede kazandı.

Read more

Why is state management necessary?

When you have state management in place data actually flows from your app to state and vice versa. You know exactly where your data is . These state management tools also give you a point-in-time snapshot of the entire data. In that way, you know exactly where your data is and that makes your development faster.

Read more

How does state work in Flutter?

State is information that (1) can be read synchronously when the widget is built and (2) might change during the lifetime of the widget. It is the responsibility of the widget implementer to ensure that the State is promptly notified when such state changes, using State. setState.

Read more

State ne demek React?

React State Nedir ? State bir componentin o anki durumunu gösteren ve farklı property’lerden oluşan bir javascript objesidir. Her component kendi içerisinde state ‘lere sahip olabilir ve state ‘ler kullanıldığı componentler tarafından yönetilir. State ‘ler componentin o anki durumunu simgeler.

Read more

React State ve props nedir?

Kartların üzerine tıklanıldığında da işin; yapıldı, yapılmadı durumu (State ) değişecek. Görüldüğü üzere React kütüphanesi yazdığımız kodu bizim için oldukça anlamlı hale getiriyor. Props , oluşturduğumuz component’lerin özelliklerini tutarken, State ise sayfanın ya da bir componentin durumunu tutuyor.

Read more