Skip to content

Instantly share code, notes, and snippets.

View TobiCrackIT's full-sized avatar
🚀
Building

Oluwatobi Oluwatoyin TobiCrackIT

🚀
Building
View GitHub Profile
@TobiCrackIT
TobiCrackIT / custom_range_slider.dart
Created December 3, 2023 23:01
Custom Range Slider
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
@TobiCrackIT
TobiCrackIT / pagination.dart
Last active August 30, 2021 12:16
Pagination in Flutter App without using a package
import 'package:flutter/material.dart';
class PaginatedScreen extends StatefulWidget {
@override
_PaginatedScreenState createState() => _PaginatedScreenState();
}
class _PaginatedScreenState extends State<PaginatedScreen> {
int page = 1;
@TobiCrackIT
TobiCrackIT / gist:86b73b02654f94675e7a7a1461d8a599
Created April 20, 2020 21:39
Flutter Tutorial on the use of select widgets
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Custom5',