This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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", |