Skip to content

Commit

Permalink
feat: Update to match internal repo (#6)
Browse files Browse the repository at this point in the history
* feat: update to Flutter >= 3.16

* Add changes to get up to 3.19

* target

* feat: Chat mesage and Text message (#4)

* feat: Chat message link preview (#6)

* feat: Chat message react / tag pills (#7)

* Add circle icon button

* Replace size name

* Add button examples

* Change types and add ontap

* feat: Chat message attachment preview (#8)

* chore: merge with upstream (#10)

* feat: Chat attachment widget. (#9)

* chore: Internal repo updates  (#11)

* Update to upstream 36cef160bdada51b8c4f896a9955fec3bde5a731

* feat: Chat message audio / voice note (#13)

---------

Co-authored-by: Osman <AO3856@zebra.com>
  • Loading branch information
thelukewalton and Osman committed Mar 6, 2024
1 parent 8c86b9c commit 8e04f23
Show file tree
Hide file tree
Showing 126 changed files with 13,920 additions and 10,123 deletions.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "zds-c9c24"
}
}
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @benken @thelukewalton @mikecoomber #@ps9310
26 changes: 26 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,29 @@ jobs:
- uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
code-quality:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: subosito/flutter-action@v2
- name: Setup flutter
run: flutter pub get
- name: Lint and format
run: |
dart format . -l 120
dart fix --apply
flutter analyze
- name: Check for modified files
id: git-check
run: echo "modified=$(if [ -n "$(git status --porcelain)" ]; then echo "true"; else echo "false"; fi)" >> $GITHUB_ENV
- name: Update changes in GitHub repository
if: env.modified == 'true'
run: |
git config --global user.name "github-actions"
git config --global user.email "github-actions@github.com"
git add -A
git commit -m '[automated commit] lint format and import sort'
git push -f
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ pubspec.lock
!**/ios/**/default.pbxuser
!**/ios/**/default.perspectivev3


**/node_modules
.master/
**/.fvm/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A library of Flutter components made by Zebra Technologies based on the Zebra De

Make sure your app meets the following requirements before using ZDS Flutter

- sdk: >=3.0.10 <4.0.0
- sdk: >=3.2.0 <4.0.0
- flutter: >=3.16.0

## Usage
Expand Down

0 comments on commit 8e04f23

Please sign in to comment.