Showing
8 changed files
with
0 additions
and
170 deletions
.github/FUNDING.yml
deleted
100644 → 0
| 1 | -# These are supported funding model platforms | ||
| 2 | - | ||
| 3 | -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
| 4 | -patreon: # Replace with a single Patreon username | ||
| 5 | -open_collective: # Replace with a single Open Collective username | ||
| 6 | -ko_fi: jonataslaw | ||
| 7 | -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
| 8 | -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
| 9 | -liberapay: # Replace with a single Liberapay username | ||
| 10 | -issuehunt: # Replace with a single IssueHunt username | ||
| 11 | -otechie: # Replace with a single Otechie username | ||
| 12 | -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] | 
.github/ISSUE_TEMPLATE/bug_report.md
deleted
100644 → 0
| 1 | ---- | ||
| 2 | -name: Bug report | ||
| 3 | -about: Create a report to help us improve | ||
| 4 | -title: '' | ||
| 5 | -labels: '' | ||
| 6 | -assignees: jonataslaw | ||
| 7 | - | ||
| 8 | ---- | ||
| 9 | -**ATTENTION: DO NOT USE THIS FIELD TO ASK SUPPORT QUESTIONS. USE THE PLATFORM CHANNELS FOR THIS. THIS SPACE IS DEDICATED ONLY FOR BUGS DESCRIPTION.** | ||
| 10 | -**Fill in the template. Issues that do not respect the model will be closed.** | ||
| 11 | - | ||
| 12 | -**Describe the bug** | ||
| 13 | -A clear and concise description of what the bug is. | ||
| 14 | - | ||
| 15 | -**Reproduction code | ||
| 16 | -NOTE: THIS IS MANDATORY, IF YOUR ISSUE DOES NOT CONTAIN IT, IT WILL BE CLOSED PRELIMINARY)** | ||
| 17 | - | ||
| 18 | -example: | ||
| 19 | - | ||
| 20 | -```dart | ||
| 21 | -void main() => runApp(MaterialApp(home: Home())); | ||
| 22 | - | ||
| 23 | -class Home extends StatelessWidget { | ||
| 24 | - final count = 0.obs; | ||
| 25 | - @override | ||
| 26 | - Widget build(context) => Scaffold( | ||
| 27 | - appBar: AppBar(title: Text("counter")), | ||
| 28 | - body: Center( | ||
| 29 | - child: Obx(() => Text("$count")), | ||
| 30 | - ), | ||
| 31 | - floatingActionButton: FloatingActionButton( | ||
| 32 | - child: Icon(Icons.add), | ||
| 33 | - onPressed: () => count.value++, | ||
| 34 | - )); | ||
| 35 | -} | ||
| 36 | -``` | ||
| 37 | - | ||
| 38 | -**To Reproduce** | ||
| 39 | -Steps to reproduce the behavior: | ||
| 40 | -1. Go to '...' | ||
| 41 | -2. Click on '....' | ||
| 42 | -3. Scroll down to '....' | ||
| 43 | -4. See error | ||
| 44 | - | ||
| 45 | -**Expected behavior** | ||
| 46 | -A clear and concise description of what you expected to happen. | ||
| 47 | - | ||
| 48 | -**Screenshots** | ||
| 49 | -If applicable, add screenshots to help explain your problem. | ||
| 50 | - | ||
| 51 | -**Flutter Version:** | ||
| 52 | -Enter the version of the Flutter you are using | ||
| 53 | - | ||
| 54 | -**Getx Version:** | ||
| 55 | -Enter the version of the Getx you are using | ||
| 56 | - | ||
| 57 | -**Describe on which device you found the bug:** | ||
| 58 | -ex: Moto z2 - Android. | ||
| 59 | - | ||
| 60 | -**Minimal reproduce code** | ||
| 61 | -Provide a minimum reproduction code for the problem | 
.github/ISSUE_TEMPLATE/config.yml
deleted
100644 → 0
| 1 | -blank_issues_enabled: false | 
| 1 | ---- | ||
| 2 | -name: Feature request | ||
| 3 | -about: Suggest an idea for this project | ||
| 4 | -title: '' | ||
| 5 | -labels: '' | ||
| 6 | -assignees: '' | ||
| 7 | - | ||
| 8 | ---- | ||
| 9 | -**ATTENTION: DO NOT USE THIS FIELD TO ASK SUPPORT QUESTIONS. USE THE PLATFORM CHANNELS FOR THIS. THIS SPACE IS DEDICATED ONLY FOR FEATURE REQUESTS** | ||
| 10 | - | ||
| 11 | -**Is your feature request related to a problem? Please describe.** | ||
| 12 | -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
| 13 | - | ||
| 14 | -**Describe the solution you'd like** | ||
| 15 | -A clear and concise description of what you want to happen. | ||
| 16 | - | ||
| 17 | -**Describe alternatives you've considered** | ||
| 18 | -A clear and concise description of any alternative solutions or features you've considered. | 
.github/pull_request_template.md
deleted
100644 → 0
| 1 | -*Replace this paragraph with a description of what this PR is changing or adding, and why. Consider including before/after screenshots.* | ||
| 2 | - | ||
| 3 | -Every PR must update the corresponding documentation in the `code`, and also the readme in english with the following changes. | ||
| 4 | - | ||
| 5 | -## Pre-launch Checklist | ||
| 6 | - | ||
| 7 | -- [ ] I updated/added relevant documentation (doc comments with `///`). | ||
| 8 | -- [ ] I added new tests to check the change I am making or feature I am adding, or @jonataslaw said the PR is test-exempt. | ||
| 9 | -- [ ] All existing and new tests are passing. | 
.github/workflows/main.yml
deleted
100644 → 0
| 1 | -#The name of your workflow. | ||
| 2 | -name: build | ||
| 3 | -# Trigger the workflow on push or pull request | ||
| 4 | -on: | ||
| 5 | - push: | ||
| 6 | - branches: [master] | ||
| 7 | - pull_request: | ||
| 8 | - branches: [master] | ||
| 9 | -#A workflow run is made up of one or more jobs. Jobs run in parallel by default. | ||
| 10 | -jobs: | ||
| 11 | - test: | ||
| 12 | - #The type of machine to run the job on. [windows,macos, ubuntu , self-hosted] | ||
| 13 | - defaults: | ||
| 14 | - run: | ||
| 15 | - working-directory: ./ | ||
| 16 | - runs-on: ubuntu-latest | ||
| 17 | - #sequence of tasks called | ||
| 18 | - steps: | ||
| 19 | - # The branch or tag ref that triggered the workflow will be checked out. | ||
| 20 | - # https://github.com/actions/checkout | ||
| 21 | - - uses: actions/checkout@v3 | ||
| 22 | - # Setup a flutter environment. | ||
| 23 | - # https://github.com/marketplace/actions/flutter-action | ||
| 24 | - - uses: subosito/flutter-action@v2 | ||
| 25 | - with: | ||
| 26 | - flutter-version: "3.22.0" | ||
| 27 | - channel: "stable" | ||
| 28 | - - run: flutter pub get | ||
| 29 | - #- run: flutter analyze | ||
| 30 | - # run flutter widgets tests and unit tests | ||
| 31 | - - run: flutter test --coverage | ||
| 32 | - # Upload coverage reports to Codecov | ||
| 33 | - # https://github.com/marketplace/actions/codecov | ||
| 34 | - - uses: codecov/codecov-action@v1.0.7 | 
.vscode/launch.json
deleted
100644 → 0
| 1 | -{ | ||
| 2 | - // Use IntelliSense to learn about possible attributes. | ||
| 3 | - // Hover to view descriptions of existing attributes. | ||
| 4 | - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
| 5 | - "version": "0.2.0", | ||
| 6 | - "configurations": [ | ||
| 7 | - { | ||
| 8 | - "name": "getx", | ||
| 9 | - "request": "launch", | ||
| 10 | - "type": "dart" | ||
| 11 | - }, | ||
| 12 | - { | ||
| 13 | - "name": "example", | ||
| 14 | - "cwd": "example", | ||
| 15 | - "request": "launch", | ||
| 16 | - "type": "dart" | ||
| 17 | - }, | ||
| 18 | - { | ||
| 19 | - "name": "example_nav2", | ||
| 20 | - "cwd": "example_nav2", | ||
| 21 | - "request": "launch", | ||
| 22 | - "type": "dart" | ||
| 23 | - }, | ||
| 24 | - { | ||
| 25 | - "name": "example_nav2 WEB", | ||
| 26 | - "cwd": "example_nav2", | ||
| 27 | - "request": "launch", | ||
| 28 | - "type": "dart", | ||
| 29 | - "deviceId": "Chrome" | ||
| 30 | - } | ||
| 31 | - ] | ||
| 32 | -} | 
.vscode/settings.json
deleted
100644 → 0
- 
Please register or login to post a comment