Blog
This is my blog where I share My knowledge and things that you might be interested in.
You can encounter some issues when trying to create a Interval, for example every 10 seconds check if the user made some changes.The problem could be, that you can not…
Using context in your react app is really useful, when you are passing some prop to multiple nested elements for example Theme How to use it? In this example we…
This hook is useful when we are trying to read some input field or when we just need the reference to the element for getting size or other properties. How…
Why Custom Widgets? Step 1: Planning and designing Begin with vision of the custom widget. In this case, we want to create a card widget that can display an image,…
Handling react forms efficiently is a crucial task. Two popular libraries that simplify form management are Formik and react-hook-form (often referred to as use-form). Formik: Pros: Cons: react-hook-form (use-form): Pros:…
What can Freezed+json_serializable packages do for you? Setup 1. Import dependencies Pubspec.yaml should look like this 2. Exclude generated files from analysis 3. Watch with build runner This will start…