event_timeline_view 0.0.4 copy "event_timeline_view: ^0.0.4" to clipboard
event_timeline_view: ^0.0.4 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/event_model.dart';
import 'package:event_timeline_view/features/timeline_view/presentation/screen/timeline_view_screen.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, 3, 25, 56),
        endTime: DateTime(2024, 2, 27, 7, 55, 22),
        statusColor: 'FF6B00'),
  ];

  @override
  Widget build(BuildContext context) {
    return TimelineViewScreen(
      events: events,
      selectedDay: DateTime(
        2024,
        3,
        27,
      ),
    );
  }
}
5
likes
110
pub points
39%
popularity

Publisher

verified publisherjarvistechnolabs.com

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

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

auto_size_text, flutter, intl, table_calendar

More

Packages that depend on event_timeline_view