Skip to content

Instantly share code, notes, and snippets.

View raphaelrss's full-sized avatar

Raphael Rodrigues Soares Santos raphaelrss

View GitHub Profile
@raphaelrss
raphaelrss / main.dart
Last active June 17, 2023 18:18
trabalho mobile
import 'package:flutter/material.dart';
import 'package:http/http.dart' as http;
import 'dart:convert';
List<Map<String, String>>? resultList;
void main() {
runApp(MyApp());
}
@raphaelrss
raphaelrss / main.dart
Last active June 8, 2023 14:10
trabalho
import 'package:flutter/material.dart';
const Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@raphaelrss
raphaelrss / main.dart
Created June 8, 2023 03:59
primal-zephyr-3619
void main() {
for (int i = 0; i < 5; i++) {
print('hello ${i + 1}');
}
}
@raphaelrss
raphaelrss / main.dart
Created May 23, 2023 00:51
testappclass
import 'package:flutter/material.dart';
void main() {
runApp(TestApp());
}
class TestApp extends StatelessWidget{
@override
Widget build (BuildContext context){