Skip to content

Commit

Permalink
Add screenshot in pubspec.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Origogi committed Feb 20, 2024
1 parent 463bf1d commit 6d49127
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package io.flutter.plugins;

import io.flutter.plugin.common.PluginRegistry;

/**
* Generated file. Do not edit.
*/
public final class GeneratedPluginRegistrant {
public static void registerWith(PluginRegistry registry) {
if (alreadyRegisteredWith(registry)) {
return;
}
}

private static boolean alreadyRegisteredWith(PluginRegistry registry) {
final String key = GeneratedPluginRegistrant.class.getCanonicalName();
if (registry.hasPlugin(key)) {
return true;
}
registry.registrarFor(key);
return false;
}
}
5 changes: 4 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: vertical_card_pager
description: Use dynamic and beautiful card view pagers to help you create great apps.
version: 1.6.0
version: 1.6.0+1
homepage: https://github.com/Origogi/Vertical_Card_Pager

environment:
Expand All @@ -15,3 +15,6 @@ dev_dependencies:
flutter_test:
sdk: flutter

screenshots:
- description: Vertical Card Pager Example
path: screenshot/screenshot.png
Binary file added screenshot/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 6d49127

Please sign in to comment.