Prasant

Prasant

I am Prasant Bagale, a software engineer with a passion for artificial intelligence and machine learning, especially natural language processing. I previously worked as a flutter developer before shifting my focus to AI/ML. On this blog, I write articles on topics like neural networks, natural language understanding, and other aspects of NLP. Outside of technology, I enjoy watching anime and reading web novels. I am always exploring new ways to apply AI to solve real-world problems and enhance human-computer interaction. My goal is to share my knowledge and experiences with AI/ML to help others learn about this exciting field. Here's my linkedIn: https://www.linkedin.com/in/prasant-bagale/

Unwrap Key Failed Flutter Error

image 3

Unwrap Key Failed Error: Solution: Added the last two lines on AndroidManifest.xml located on android/app/src/main This solution is given on GitHub. Here’s the link to the solution: 3.1.0: Failed to unwrap key · Issue #13 New Error: If it doesn’t…

Why isn’t Pubsec in dart?

image 21

Have you thought about why Pubsec isn’t in dart? Why is it in another language? I was curious today, so I did a little bit of searching. Before we discuss that, Let’s discuss Yaml first. Do you know Yaml stands…

Flutter Rounded Container Code Example

Top 5 1

How to Make a Rounded Container in Flutter? Related: Create a Dialog Box in Flutter with Radio Buttons How to Fetch Data from Internet? Flutter Tutorial Login and Register Easily with Flutter using Firebase

Flutter: How to Hide Keyboard on iPhone & Android

Flutter Hide Keyboard on Iphone Android

One of the most common issues flutters users face while developing mobile apps is the keyboard. After the Keyboard pops up, it is important to dismiss it because it takes up around half the area on the screen. Related: Login/Register…

[Solved] Don’t use one refreshController to multiple SmartRefresher

SmartRefresher

Don’t use one refreshController to multiple SmartRefresher, It will cause some unexpected bugs mostly in TabBarView ‘package:pull_to_refresh/src/smart_refresher.dart’: package:pull_to_refresh Failed assertion: line 608 pos 12: ‘_refresherState == null’ The issue was using one refreshController to multiple SmartRefresher. The solution was quite…