Skip to content

Instantly share code, notes, and snippets.

View hesptech's full-sized avatar

oswaldo olea hesptech

View GitHub Profile
@hesptech
hesptech / main.dart
Created September 1, 2023 12:24
magenta-oak-2966
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
@hesptech
hesptech / main.dart
Created July 28, 2023 06:52
astonishing-gust-1748
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
@hesptech
hesptech / main.dart
Created July 27, 2023 10:38
astonishing-gust-1748
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
@hesptech
hesptech / main.dart
Created May 31, 2023 07:56
mellow-rainbow-6529
void main() {
var myNameVar = 'Fer';
String myNameString = 'Fer';
final myNameFinal = 'Fer';
late final myNameLate = null;
final bool varBool = true;
dynamic myNameDynamic = 'hola';
myNameDynamic = 1;