Skip to content

Commit

Permalink
Merge pull request #22 from What-the-Flutter/v1.1.1
Browse files Browse the repository at this point in the history
V1.1.1
  • Loading branch information
KirillSergeevich authored Jun 22, 2023
2 parents 2503f2e + 3633286 commit 2039c2b
Show file tree
Hide file tree
Showing 37 changed files with 938 additions and 1,585 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Deploy to GitHub Pages

on:
push:
branches: [ master ]

jobs:
deploy:
name: Build and Deploy
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Install latest flutter
uses: subosito/flutter-action@v1
with:
channel: 'stable'
cache: true

- name: Initialize
run: |
flutter pub get
flutter pub run build_runner build --delete-conflicting-outputs
flutter config --enable-web
- name: Build
run: |
cd example/
flutter build web --no-tree-shake-icons
sed -i 's+href="/"+href="./"+g' build/web/index.html
cd ..
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: example/build/web
clean: true
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
ISSUES.md

# Miscellaneous
*.class
*.log
Expand Down Expand Up @@ -30,6 +28,7 @@ ISSUES.md
.pub-cache/
.pub/
build/
pubspec.lock

# Android related
**/android/**/gradle-wrapper.jar
Expand Down
4 changes: 2 additions & 2 deletions .metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# This file should be version controlled and should not be manually edited.

version:
revision: e70236e36ce1d32067dc68eb55519ec3e14b6b01
channel: beta
revision: 097d3313d8e2c7f901932d63e537c1acefb87800
channel: stable

project_type: package
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.1.1
* **Added web example and code analysers**

## 1.1.0
* **Added** `customBuilder` [#15](https://github.com/What-the-Flutter/wtf_sliding_sheet/pull/15)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 bnxm
Copyright (c) 2023 flutter.wtf

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,7 @@

A widget that can be dragged and scrolled in a single gesture and snapped to a list of extents.

<a href="https://github.com/What-the-Flutter/wtf_sliding_sheet/blob/master/example/lib/main.dart">
<img width="205px" alt="Example of a SlidingSheet" src="https://raw.githubusercontent.com/What-the-Flutter/wtf_sliding_sheet/master/images/example_preview.gif"/>
</a>

Click [here](https://github.com/What-the-Flutter/wtf_sliding_sheet/blob/master/example/lib/main.dart) to view the full example.
You can check interactive example [here](https://what-the-flutter.github.io/wtf_sliding_sheet/#/).

The package is a fork of [this](https://github.com/tchigher/sliding-sheet) repository.

Expand Down
Loading

0 comments on commit 2039c2b

Please sign in to comment.