mirror of
https://github.com/Iconica-Development/flutter_timeline.git
synced 2025-05-19 18:43:45 +02:00
10 lines
307 B
Dart
10 lines
307 B
Dart
// SPDX-FileCopyrightText: 2023 Iconica
|
|
//
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
mixin TimelineUserStoryRoutes {
|
|
static const String timelineHome = '/timeline';
|
|
static const String timelineView = '/timeline-view/:post';
|
|
static String timelineViewPath(String postId) => '/timeline-view/$postId';
|
|
}
|