Skip to content

Instantly share code, notes, and snippets.

View jeremiahseun's full-sized avatar
😎
Ruling with Christ!

Jeremiah Oluwaseun Erinola jeremiahseun

😎
Ruling with Christ!
View GitHub Profile
@logickoder
logickoder / build-production.yml
Last active November 19, 2024 13:56
My Flutter CI/CD Workflow
# From .github/workflows/build-production.yml
name: Build and upload android app to Google Play Store
on:
push:
branches:
- main
paths:
- 'android/**'
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();