Skip to content

Instantly share code, notes, and snippets.

View BayBreezy's full-sized avatar

Behon Baker BayBreezy

View GitHub Profile
@BayBreezy
BayBreezy / Vuetify Custom Icon with Nuxt 3 (Nuxt Icon by Atinux).ts
Last active April 20, 2023 23:17
Code used to add custom icon to vuetify plugin in NuxtJS3 with Vuetify 3
// This file is the custom.ts
import { h } from "vue";
import type { IconSet, IconAliases, IconProps } from "vuetify";
// Custom icon component create
// I am extending the Icon module created by Atinus -> https://github.com/nuxt-modules/icon
import MIcon from "~~/components/MIcon.vue";
/**
* Code for the icon component looks like this
*
@BayBreezy
BayBreezy / main.dart
Created January 16, 2022 14:15
Simple UI of a Chat List
// 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';
import 'package:google_fonts/google_fonts.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {