Ravi Patelravipatel.hashnode.dev·Oct 9, 2024Seamlessly Open URLs in Flutter with the url_launcher PackageIn today’s mobile applications, it’s common to allow users to access external websites, social media platforms, or even open emails directly from the app. The url_launcher package in Flutter will enable developers to launch a URL in a mobile browser ...DiscussURL launcher package
Pratiksha kadamlastoyster.hashnode.dev·Oct 2, 2024Building Design System in FlutterEmbracing the fundamental principle of clean code is essential for any successful software development project. One of the key principles to follow is the DRY principle - Don't Repeat Yourself. This rule emphasizes the importance of avoiding redundan...DiscussFlutter
Hafsa Abiddevwithflutter.hashnode.dev·May 7, 2024Flutter Power-Ups: Essential Packages for Modern App DevelopmentFlutter, Google's open-source UI software development toolkit, has taken the mobile app development world by storm. One of the reasons for its popularity is its robust ecosystem of packages and libraries that extend its capabilities and make developm...Discusscupertino
Ratul Hasan Ruhanratulhasanruhan.hashnode.dev·Mar 22, 2024Flutter Package Power: Share Your CreationsImportant things about Flutter package development. Simply create a flutter project. But set the Project Type to package. Android Studio => New Flutter Project *** And the project will be created. Here don't have any Android, iOS or other folders. M...Discuss·1 likeFlutter
Ratul Hasan Ruhanratulhasanruhan.hashnode.dev·Mar 22, 2024Flutter easy onboardingWhy need an onboarding screen in the app? Onboarding screens in apps introduce features, familiarize users, set expectations, promote engagement, personalize experiences, build trust, and reduce churn. gone_board https://pub.dev/packages/gone_board...DiscussFlutter
Prabesh Bhattaraicodeflutterblog.hashnode.dev·Feb 15, 2024Change Image in FlutterPicking up image is one of the important thing in any application. User want to select various image, upload it and various other reasons. Making a functionality for picking image is one of the crucial part of mobile development and also for other pl...DiscussFlutter
Ashutosh Mishrathescriptrailoth.hashnode.dev·Feb 5, 2024FeaturedBuilding and Publishing Your First Flutter Package: A Beginner’s GuideIn this blog, I will guide you through the step-by-step process of building your Flutter package and publishing it on pub.dev. Imagine creating something or publishing something that others can use, contribute to, and celebrate. This blog is not just...Tinz Twins and 3 others are discussing this4 people are discussing thisDiscuss·51 likes·945 readsFlutter package
Tomic Riedelhashnode.tomicriedel.com·Feb 4, 2024Elevate Your Flutter App Accessibility without the hassleLet's talk about making our apps more inclusive and accessible. Accessibility might seem daunting at first, but with the right tools, it's totally manageable—and incredibly rewarding. Today, I'm excited to introduce you to a gem in the Flutter ecosys...DiscussFlutter
Manav SarkarforAll About Flutter | Flutter and Dartwww.allaboutflutter.com·Dec 4, 2023Flutter: SharedPreferences tutorial | How to setup SharedPreferences ?Data saving and storing is a common practice in applications. We have many options like SQL, NoSQL and SharedPreference. The first two options are mainly focused on large amounts of data with large transactions with constant efficiency. If you want o...Discuss·847 readsFlutter
pendant.kforComit Dev Teamblog.skku-comit.dev·Nov 12, 2023[Flutter] Freezed 패키지를 활용한 data class 생성들어가며 Flutter를 가지고 서버 통신 기능을 가진 앱을 개발을 하다보면 DTO(Data Transfer Object)를 정의해야할 일이 빈번하게 발생합니다. JSON을 받아와서 데이터 클래스로 바꾸기 위해서 factory를 선언하고, toString()을 만들어주는 등, 이것저것 해야할 일이 많기도 하고 반복적으로 발생하는 일이기도 합니다. 특히나 Union타입을 사용해야하는 경우에는 직접 관련된 로직을 구현해야해서 골치가 아프기도 하죠....Discuss·134 readsFlutter