v0.3.0flutter_timeline
एक पूरी तरह से कस्टमाइज़ करने योग्य और सामान्य समय रेखा विशेषता, वास्तविक दुनिया के अनुप्रयोगों के आधार पर
138लाइक 10230-दिन डाउनलोड60Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
⌚️ Flutter समयरेखा
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
logo
a fully customizable & general timeline widget, based on real-world application references
dependencies:
flutter_timeline: latest
simple
TimelineEventDisplay get plainEventDisplay {
return TimelineEventDisplay(
child: TimelineEventCard(
title: Text("just now"),
content: Text("someone commented on your timeline ${DateTime.now()}"),
),
indicator: TimelineDots.of(context).circleIcon);
}
List<TimelineEventDisplay> events;
Widget _buildTimeline() {
return TimelineTheme(
data: TimelineThemeData(lineColor: Colors.blueAccent),
child: Timeline(
indicatorSize: 56,
events: events,
));
}
void _addEvent() {
setState(() {
events.add(plainEventDisplay);
});
}
using offset
Widget _buildTimeline() {
return Timeline(
indicatorSize: 56,
events: events,
altOffset: Offset(0, -24) // set offset
);
}
using anchor & offset
TimelineEventDisplay get plainEventDisplay {
return TimelineEventDisplay(
anchor: IndicatorPosition.top,
indicatorOffset: Offset(0, 24),
child: TimelineEventCard(
title: Text("multi\nline\ntitle\nawesome!"),
content: Text("someone commented on your timeline ${DateTime.now()}"),
),
indicator: randomIndicator);
}
more documentation available at github
https://www.pinterest.com/official_softmarshmallow/flutter-timeline/