Skip to content

Instantly share code, notes, and snippets.

View breshman's full-sized avatar

breshman

View GitHub Profile
@breshman
breshman / ejec1.java
Last active April 20, 2024 02:24
java PC1 UTP
public class Main {
public static void main(String[] args) {
double promedio, pc1, pc2, pc3, exf;
String nombre, especialidad;
Scanner input = new Scanner(System.in);
@breshman
breshman / app_bar_custom.dart
Last active December 16, 2023 18:04
Flutter custom AppBar
import 'package:flutter/material.dart';
class AppBarBr extends StatelessWidget implements PreferredSizeWidget {
const AppBarBr({
super.key,
this.title,
this.leading,
this.actions,
this.centerTitle,
this.elevation = 0,