Blog – 2 Column

Notesless – A Markdown-Based Note-Taking Flutter App

Notesless – A Markdown-Based Note-Taking Flutter App

Noteless A markdown-based note-taking app for Android Compatible with notes saved in Notable Features Markdown-optimized editor with syntax highlighting Supports Github Flavored Markdown, AsciiMath, KaTeX and mermaidjs for diagrams Tags for organizing your notes Pin, Star and sort your notes by title or different dates Very themable – dark/light mode and accent color Full-text search File…

Xournal++ Mobile – Flutter App To Infinitely Take Notes, Sketch And Learn

Xournal++ Mobile – Flutter App To Infinitely Take Notes, Sketch And Learn

 Xournal++ Mobile Warning: Xournal++ Mobile is currently in early development and not yet stable. Use with caution! Download From Google Play Storehttps://play.google.com/store/apps/details?id=online.xournal.mobile A port of the main features of Xournal++ to various Flutter platforms like Android, iOS and the Web. Try it out Mission completed: We can now render strokes, images and text and LaTeX!. We thereby support the…

Spotify – Add captions to songs in your Spotify playlists

Spotify – Add captions to songs in your Spotify playlists

Spotify Flutter App Add captions to songs in your Spotify playlists Download Screenshots Features Sign in using Spotify Load playlists from Spotify Add captions to each song in a Spotify playlist Share playlist via link Browse playlists created by other users Save playlists Built With Flutter Spotify Web API Firebase Cloud Firestore Algolia – search provider…

Drinkable – Flutter App to check your daily water intake

Drinkable – Flutter App to check your daily water intake

Flutter is growing day by day and many developers as well. Developers are working hard to make awesome flutter apps. Which are also available on Github and anyone can download flutter app source code. The flutter open source community is trying to make examples and apps to help other developers. Here on Flutter Fumes we…

Learning Flutter Widgets, Widget 5 – Opacity

Learning Flutter Widgets, Widget 5 – Opacity

Flutter Opacity class A widget that makes its child partially transparent. This class paints its child into an intermediate buffer and then blends the child back into the scene partially transparent. For values of opacity other than 0.0 and 1.0, this class is relatively expensive because it requires painting the child into an intermediate buffer. For…

Learning Flutter Widgets, Widget 4 – Animated Container

Learning Flutter Widgets, Widget 4 – Animated Container

Flutter AnimatedContainer class Animated version of Container that gradually changes its values over a period of time. The AnimatedContainer will automatically animate between the old and new values of properties when they change using the provided curve and duration. Properties that are null are not animated. Its child and descendants are not animated. This class is useful for generating simple…

Learning Flutter Widgets, Widget 3 – Wrap

Learning Flutter Widgets, Widget 3 – Wrap

Flutter Wrap class Flutter wrap widget that displays its children in multiple horizontal or vertical runs. A Wrap lays out each child and attempts to place the child adjacent to the previous child in the main axis, given by direction, leaving spacing space in between. If there is not enough space to fit the child, Wrap creates a new run adjacent to the existing…

Learning Flutter Widgets, Widget 2 – Expanded

Learning Flutter Widgets, Widget 2 – Expanded

Flutter Expanded class Flutter Expanded widget that expands a child of a Row, Column, or Flex so that the child fills the available space. Using an flutter Expanded widget makes a child of a Row, Column, or Flex expand to fill the available space along the main axis (e.g., horizontally for a Row or vertically for a Column). If multiple children are expanded, the available space is divided among…