Skip to content

Instantly share code, notes, and snippets.

View CoderNamedHendrick's full-sized avatar
🥷

Sebastine Odeh CoderNamedHendrick

🥷
View GitHub Profile
@CoderNamedHendrick
CoderNamedHendrick / PY0101EN-5-2-Numpy2D.ipynb
Created May 2, 2020 22:00
Created on Skills Network Labs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@CoderNamedHendrick
CoderNamedHendrick / onboard_cards.dart
Last active January 22, 2022 09:17
Basic onboard cards
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) {
@CoderNamedHendrick
CoderNamedHendrick / info_switcher.dart
Created November 26, 2021 18:33
Revamp of previous
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) {
@CoderNamedHendrick
CoderNamedHendrick / wheel.dart
Created February 7, 2022 20:06
This gist is used to create a wheeel that rotates on hover on desktop and web and on tap on mobile.
class WheelScreen extends StatelessWidget {
const WheelScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const Center(
child: SizedBox(
height: 300,
width: 300,
child: RotateWheel(),
@CoderNamedHendrick
CoderNamedHendrick / main.dart
Created March 2, 2022 15:47
Cart quantity feature
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@CoderNamedHendrick
CoderNamedHendrick / main.dart
Created March 21, 2022 13:54
Custom clipping stuff
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override