Skip to content

Instantly share code, notes, and snippets.

import json
import os
data = [
{
"title": "EXPERIMENT 1: Develop a Basic \"Hello World\" Mobile Application Using Flutter",
"code": "import 'package:flutter/material.dart';\n\nvoid main() {\n runApp(MyApp());\n}\n\nclass MyApp extends StatelessWidget {\n @override\n Widget build(BuildContext context) {\n return MaterialApp(\n home: Scaffold(\n appBar: AppBar(\n title: Text('Hello App'),\n ),\n body: Center(\n child: Text('Hello World', style: TextStyle(fontSize: 24)),\n ),\n ),\n );\n }\n}"
},
{
"title": "EXPERIMENT 2: Implement Bottom Navigation Bar in a Flutter Application",