Skip to content

Instantly share code, notes, and snippets.

View WojuadeAA's full-sized avatar
🎯
Focusing

Wojuade Abdul Afeez WojuadeAA

🎯
Focusing
View GitHub Profile
@WojuadeAA
WojuadeAA / build.gradle
Created December 18, 2024 20:17 — forked from Software78/build.gradle
LadyBug fix
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
afterEvaluate { project ->
@Software78
Software78 / build.gradle
Last active May 10, 2025 23:47
LadyBug fix
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
afterEvaluate { project ->
@slightfoot
slightfoot / bottom_nested_nav.dart
Created May 4, 2022 18:05
Bottom Nested Nav - by Simon Lightfoot :: #HumpdayQandA :: 4th May 2022
import 'package:flutter/material.dart';
void main() {
runApp(const App());
}
@immutable
class App extends StatelessWidget {
const App({Key? key}) : super(key: key);
extension StringExtension on String {
String get svg => 'assets/images/svg/$this.svg';
String get png => 'assets/images/png/$this.png';
}
// Then you can do this
SvgPicture.asset(
'back'.svg,
height: 16,
width: 16,