This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From .github/workflows/build-production.yml | |
| name: Build and upload android app to Google Play Store | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'android/**' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:async'; | |
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class SliderRangeWidget extends StatefulWidget { | |
| SliderRangeWidget({Key? key}) : super(key: key); | |
| @override | |
| _SliderRangeWidgetState createState() => _SliderRangeWidgetState(); |