début du cours

This commit is contained in:
felix-vi
2025-10-07 12:25:41 +02:00
commit c642a6f914
645 changed files with 24231 additions and 0 deletions

12
TP1/image/lib/main.dart Normal file
View File

@@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
void main() {
runApp(
Center(
child: Image.network(
"https://images.pexels.com/photos/414612/pexels-photo-414612.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260",
height: 200.0,
),
),
);
}