Flutter Add Image

Flutter is an open source framework by Google for building beautiful, natively compiled, multi-platform applications from a single code base. Flutter allows you to build apps for mobile, web, dekstop, and embedded devices – all from a single codebase. Referring to the official documentation we can easily add image in a flutter app using the […]

Read More...

Minimal Flutter App

Minimal Flutter app is the simplest possible app that calls the runApp( ) function with a widget. In the main function, we are calling runApp( ) function where we are passing two widgets directly irrespective of Stateless or Stateful behavior. We have wrapped the Text( ) widget in Center Widget. In other words, the Center( […]

Read More...