Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

flutter flutter logo cinematic app

this app is a flutter port of the native android app cinematic. my intention in creating this app was understanding the intricacies of building apps in flutter. just like the native android app, this app does not make any efforts in being a nicely architectured application. that being said the whole point is to showcase flutter’s capabilities for building simple apps and to understand key difference and advantages to native development.

flutter cinematic uses the movie db public api as data sources and uses the standard dart libraries for making network requests.

in terms of ui, the goal was replicating the android design as closely as possible to understand the possibilities that flutter offers for crafting uis.

building from source

to build this cinematic app from the source you will have to obtain an api-key from tmdb right here.
set this key to the constant api_key in constants.dart to run the app.
additionally, the app now uses dart2 which means that you should enable that in your ide if you haven’t done so yet.

gif

native flutter cinematic app

learnings

creating this app and learning flutter in general felt like a gift for developers.

it significantly increased development velocity by, amongst others, reducing development cycles and the ability to create reactive, modular components.

coming from the realms of android, those are the things that stood out to me:

  • creating beautiful uis is easier with flutter
  • avoiding to write boilerplate code (xml layouts, adapters etc.)
  • creating uis in a declarative way without dealing with the shortcomings of android’s databinding
  • hot reload – this one is a game-changer
  • dart is not that bad of a language, but it doesn’t get close to kotlin.
    i think for the usecase of flutter dart actually makes a lot of sense
  • the ability to not worry about state changes in the ui. the widget will take care of the rendering
    using it’s properties or state

download the full project for this post from the following button

this source is fully free for all time

download as zip


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD


Download this source code for
5 USD

Comments are closed.