All Projects → furkantektas → Timeline_list

furkantektas / Timeline_list

Licence: mit
Timeline widget for flutter

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Timeline list

React Event Timeline
A responsive event timeline in React.js
Stars: ✭ 504 (+79.36%)
Mutual labels:  widget, timeline
Flutterweekview
Displays a highly customizable week view (or day view) which is able to display events, to be scrolled, to be zoomed-in & out and a lot more !
Stars: ✭ 130 (-53.74%)
Mutual labels:  package, widget
Flutter app
🔥🔥🔥本项目包括各种基本控件使用(Text、TextField、Icon、Image、Listview、Gridview、Picker、Stepper、Dialog、Slider、Row、Appbar、Sizebox、BottomSheet、Chip、Dismissible、FlutterLogo、Check、Switch、TabBar、BottomNavigationBar、Sliver等)、豆瓣电影、tubitv、每日一文、和天气、百姓生活、随机诗词、联系人、句子迷、好奇心日报、有道精品课、高德定位、音乐播放器🎵、追书神器等板块
Stars: ✭ 2,140 (+661.57%)
Mutual labels:  widget, timeline
Qt-Timeline-Widget
[Qt控件] 时间轴列表控件
Stars: ✭ 43 (-84.7%)
Mutual labels:  widget, timeline
Styled widget
Simplifying widget style in Flutter.
Stars: ✭ 424 (+50.89%)
Mutual labels:  package, widget
menu button
Flutter plugin to display a popup menu button widget with handsome design and easy to use.
Stars: ✭ 64 (-77.22%)
Mutual labels:  package, widget
Stick
solution of "sticking packets" for TCP network transmission
Stars: ✭ 261 (-7.12%)
Mutual labels:  package
Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (-3.56%)
Mutual labels:  widget
Triangulationdrawable
Low Ploy Triangulation Animation on Android.
Stars: ✭ 259 (-7.83%)
Mutual labels:  widget
React Horizontal Timeline
[Not maintained] A Timeline component
Stars: ✭ 257 (-8.54%)
Mutual labels:  timeline
Stepperview
SwiftUI iOS component for Step Indications.
Stars: ✭ 281 (+0%)
Mutual labels:  timeline
Xcframeworks
Demonstration of creating and integrating xcframeworks and their co-op with static libraries and Swift packages
Stars: ✭ 272 (-3.2%)
Mutual labels:  package
Inview notifier list
A Flutter package that builds a list view and notifies when the widgets are on screen.
Stars: ✭ 269 (-4.27%)
Mutual labels:  package
Gesturelock
a GestureLock that can customize length and style
Stars: ✭ 261 (-7.12%)
Mutual labels:  widget
Confex
Useful helper to read and use application configuration from environment variables.
Stars: ✭ 272 (-3.2%)
Mutual labels:  package
Scena
🎬 Scena is a component that represents the timeline of Scene.js. You can control time, properties, and items.
Stars: ✭ 259 (-7.83%)
Mutual labels:  timeline
Curdling
Concurrent package manager for Python
Stars: ✭ 275 (-2.14%)
Mutual labels:  package
Construct
A PHP project/micro-package generator for PDS compliant projects or micro-packages.
Stars: ✭ 257 (-8.54%)
Mutual labels:  package
Dynamixelsdk
ROBOTIS Dynamixel SDK (Protocol1.0/2.0)
Stars: ✭ 266 (-5.34%)
Mutual labels:  package
Stepprogressview
Step-by-step progress view with labels and shapes. A good replacement for UIActivityIndicatorView and UIProgressView.
Stars: ✭ 272 (-3.2%)
Mutual labels:  timeline

Flutter Timeline Widget

pub package Build Status codecov

Displays a scrollable timeline with custom child widgets and custom icons.

Flutter Timeline List Screenshot

Installation

In your pubspec.yaml file within your Flutter Project:

dependencies:
  timeline_list: ^0.0.3

Features

  • 3 different timeline alignments. Left, Center, Right.
  • On demand child building with Timeline.builder.
  • Custom icon and icon size support (icon sizes supported only on centered timeline).

Usage

import 'package:timeline_list/timeline.dart';
import 'package:timeline_list/timeline_model.dart';

List<TimelineModel> items = [
      TimelineModel(Placeholder(),
          position: TimelineItemPosition.random,
          iconBackground: Colors.redAccent,
          icon: Icon(Icons.blur_circular)),
      TimelineModel(Placeholder(),
          position: TimelineItemPosition.random,
          iconBackground: Colors.redAccent,
          icon: Icon(Icons.blur_circular)),
    ];
    return Timeline(children: items, position: TimelinePosition.Center);

Example

A sample timeline app can be found in the example/ folder.

ehlibyte games

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].