اجل احاول عمل run
انا في بداية تعلمي لفلتر
هذه الاكواد اللي عملتلها run
import 'package:flutter/material.dart'; void main(){ runApp(MyApp()); } class MyApp extends StatelessWidget{ @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: Text("AppBar Title "), ), body: Text("AppBar Title ") , ) ); } }