Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/src/showcase/showcase.dart
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ class Showcase extends StatefulWidget {
onBarrierClick == null || disableBarrierInteraction == false,
"can't use `onBarrierClick` & `disableBarrierInteraction` property "
'at same time',
),
assert(
title != null || description != null,
'title or description can\'t be null. Provide at least one of them',
);

/// Creates a showcase with a completely custom tooltip widget.
Expand Down