A new Flutter package that provide You A simple TimeLine

Demo : https://i.ibb.co/VLV9Kny/Screenshot-108.png

##Usage

Example (https://github.com/AbdllahMohamed/simple_timeline/blob/main/example/example.dart)

To use this package :

add the dependency to your pubspec.yaml file

Features

Getting started

   dependencies:
        flutter:
            sdk : flutter
        custome_timeline :

Usage

import 'package:flutter/material.dart';

void main() async {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({
    Key? key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'custome_TimeLine',
      home:Scaffold(
        body:SimpleTimeLine(itemCount: 3, label: 'label', labelData: 'labelData',),
      )
    );
  }
}

Libraries

custome_timeline