event_timeline_view 0.0.2 copy "event_timeline_view: ^0.0.2" to clipboard
event_timeline_view: ^0.0.2 copied to clipboard

An event timeline view allows users to visualize the occurrence and sequence of events over time and understanding of future occurrences.

example/main.dart

import 'package:event_timeline_view/features/timeline_view/data/model/event_model.dart';
import 'package:event_timeline_view/features/timeline_view/presentation/timeline_view_page.dart';
import 'package:flutter/material.dart';

class Example extends StatefulWidget {
  const Example({Key? key}) : super(key: key);

  @override
  State<Example> createState() => _ExampleState();
}

class _ExampleState extends State<Example> {
  List<EventModel> events = [
    EventModel(
        startTime: DateTime(2024, 3, 27, 4, 25, 56),
        endTime: DateTime(2024, 2, 27, 3, 55, 22),
        statusColor: 'FF6B00'),
  ];

  @override
  Widget build(BuildContext context) {
    return TimelineViewPage(
      events: events,
      selectedDay: DateTime(
        2024,
        3,
        27,
      ),
    );
  }
}
7
likes
0
points
16
downloads

Publisher

verified publisherjarvistechnolabs.com

Weekly Downloads

An event timeline view allows users to visualize the occurrence and sequence of events over time and understanding of future occurrences.

Homepage

License

unknown (license)

Dependencies

auto_size_text, connectivity_plus, dartz, device_info_plus, dio, dio_cache_interceptor, dio_cache_interceptor_hive_store, equatable, flutter, flutter_bloc, flutter_svg, fluttertoast, get_it, intl, logger, logging, package_info_plus, path_provider, permission_handler, shared_preferences, table_calendar

More

Packages that depend on event_timeline_view