Skip to content

DKEMMET

The IT Journal

Menu
  • Home
  • About
  • Posts
  • At A Glance
Menu

Category: Flutter Apprentice

Flutter Apprentice (v3.0) – Handling Shared Preferences

Posted on October 20, 2022October 20, 2022 by dj

Getting started Fetch deps and get the app ready to debug. App libraries Saving data So what this chapter basically tries to outline is that what we’re doing with the plugins consumed in this chapter: cached_network_image flutter_slidable platform flutter_svg is coming up with quick ways to store a little bit of information on the device….

Read more

Flutter Apprentice (V3.0) – Deep Links & Web URLs

Posted on October 17, 2022 by dj

Understanding deep links Deep links are urls that map to specific places in your app. They’re basically URLS like we see in web apps. It looks like we’re doing URI Schemes just like protocol handlers like what I’ve seen in VS Code. Types of deep links URI Schemes – What I’ve seen around in applications…

Read more

Flutter Apprentice (v03.0) – Routes & Navigation

Posted on September 13, 2022October 16, 2022 by dj

Introducing Navigation In Flutter, you use a Navigator widget to manage your screens or pages. Think of screens and pages as routes. A stack is a data structure that manages pages. You insert the elements last-in, first-out (LIFO), and only the element at the top of the stack is visible to the user. Navigator 1.0 Overview So navigator 1 was a simple push/pop API…

Read more

Flutter Apprentice – Interactive Widgets

Posted on July 1, 2022July 13, 2022 by dj

Getting started Creating the grocery item model enum documentation We used enum which is used to represent a fixed number of constant values. So a Static list of values that wont change and I believe standard enums can only be strings and enhanced enums must be final types without an override. So we had the…

Read more

Flutter Apprentice – Scrollable Widgets

Posted on June 6, 2022July 13, 2022 by dj

— A NOTE FROM THE DROP — So one thing I’ve been curious about as I’ve wanted to start working on my own apps is, “How do I handle API calls and data. and it looks like the flow is something like API Wrapper -> Data models -> Userland code. and I imagine, before reading…

Read more

Flutter Apprentice – Understanding Widgets

Posted on May 23, 2022July 13, 2022 by dj

What is a Widget? A widget is a building block for your user interface. Using widgets is like combining Legos.  A widget is a blueprint for displaying your app state. Unboxing Card2 Widget Trees Conceptually, we’re creating UIs by nesting widgets in other widgets however IN might be the wrong way to conceptualize it, containers of hierarchy might…

Read more

Flutter Apprentice – Basic Widgets

Posted on May 23, 2022July 13, 2022 by dj

I’m going to try to structure this more as an explainer reference for myself than as an outline of the chapter since what this chapters appears to do is show us how to use basic widgets I have to use flutter run –ignore-deprecation to debug in visual studo code. so I will probably switch to…

Read more
  • ACG Labs
  • Automation
    • Ansible
  • AWS
    • Cloud Formation
    • ECS
    • S3
  • Books
    • Dart Apprentice
    • Flutter Apprentice
  • Certification Prep
    • LPIC-1,101
  • Docker
  • Platforms
    • Linux
    • Windows
  • Programming
    • Dart / Flutter
    • Python
  • Projects
    • Build "MyOS" (Debian, i3)
    • Fullstack App Dev (Flutter, Python)