const
19 |
20 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/3_Text/2_TextDirection_rtl_Run.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(TextDirection_rtl_Run());
5 | }
6 |
7 | class TextDirection_rtl_Run extends StatelessWidget{
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp(
12 | debugShowCheckedModeBanner: false,
13 | title:"TextDirection_rtl_Run",
14 | home: new Scaffold(
15 | body:
16 | Center(
17 | child:
18 | Text(
19 | 'مرحبا" كيف الحال',
20 | textDirection: TextDirection.rtl,
21 | ),
22 | )
23 | ),
24 | );
25 | }
26 | }
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/5_MainBg/1_MainBgCustomColorRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(MainBgCustomColorRun());
5 | }
6 |
7 | class MainBgCustomColorRun extends StatelessWidget{
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp (
12 | debugShowCheckedModeBanner: false,
13 | title: "MainBgCustomColor",
14 | home: new Scaffold(
15 | body:
16 | Container(
17 | color: Colors.blue,
18 | width: double.infinity,
19 | height: double.infinity,
20 | ),
21 | ),
22 | );
23 | }
24 | }
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/5_MainBg/4_MainBgDarkGAppBarRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(MainBgDarkGAppBarRun());
5 | }
6 |
7 | class MainBgDarkGAppBarRun extends StatelessWidget{
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp (
12 | debugShowCheckedModeBanner: false,
13 | theme: ThemeData.dark(),
14 | title: "MainDarkBgGAppBar",
15 | home: new Scaffold(
16 | appBar: AppBar(
17 | title: Text("Dark Bg + Grey AppBar"),
18 | backgroundColor: Colors.grey,
19 | ),
20 | ),
21 | );
22 | }
23 |
24 | }
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/3_Text/4_TextBoldRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(TextBoldRun());
5 | }
6 |
7 | class TextBoldRun extends StatelessWidget{
8 | @override
9 | Widget build(BuildContext context) {
10 | return MaterialApp(
11 | debugShowCheckedModeBanner: false,
12 | title:"TextBold",
13 | home:
14 | Scaffold(
15 | body:
16 | Center(
17 | child:
18 | Text(
19 | 'Bolded Text',
20 | style: TextStyle(
21 | fontWeight:FontWeight.bold,
22 | ),
23 | ),
24 | )
25 | ),
26 | );
27 | }
28 | }
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/5_MainBg/5_MainBgLightRAppBarRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(MainBgLightRAppBarRun());
5 | }
6 |
7 | class MainBgLightRAppBarRun extends StatelessWidget{
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp (
12 | debugShowCheckedModeBanner: false,
13 | theme: ThemeData.light(),
14 | title: "MainLightBgRAppBar",
15 | home: new Scaffold(
16 | appBar: AppBar(
17 | title: Text("Light Bg + Red AppBar"),
18 | backgroundColor: Colors.red,
19 | ),
20 | ),
21 | );
22 | }
23 |
24 | }
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/3_Text/16_TextAlignRightRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(TextAlignRightRun());
5 | }
6 |
7 | class TextAlignRightRun extends StatelessWidget{
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp(
12 | debugShowCheckedModeBanner: false,
13 | title:"Text Align Right",
14 | home: new Scaffold(
15 | body:
16 | Container(
17 | width:double.infinity,
18 | child:
19 | Text (
20 | 'Right Text',
21 | textAlign: TextAlign.right,
22 | ),
23 | )
24 | ),
25 | );
26 | }
27 |
28 | }
29 |
30 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/3_Text/1_TextDirection_ltr_Run.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(TextDirection_ltr_Run());
5 | }
6 |
7 |
8 | class TextDirection_ltr_Run extends StatelessWidget {
9 |
10 | @override
11 | Widget build(BuildContext context) {
12 | return MaterialApp(
13 | debugShowCheckedModeBanner: false,
14 | title:"TextDirection_ltr_Run",
15 | home: new Scaffold(
16 | body:
17 | Center(
18 | child:
19 | Text(
20 | "Hello World",
21 | textDirection: TextDirection.ltr,
22 | ),
23 | )
24 | ),
25 | );
26 | }
27 |
28 | }
29 |
30 |
31 |
32 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/3_Text/3_TextColorRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 |
4 | void main() {
5 | runApp(TextColorRun());
6 | }
7 |
8 | class TextColorRun extends StatelessWidget{
9 |
10 | @override
11 | Widget build(BuildContext context) {
12 | return MaterialApp(
13 | debugShowCheckedModeBanner: false,
14 | title:"TextColor",
15 | home: new Scaffold(
16 | body:
17 | Center(
18 | child:
19 | Text(
20 | 'Hello World!',
21 | style: TextStyle(
22 | color: Colors.red,
23 | ),
24 | ),
25 | )
26 | ),
27 | );
28 | }
29 |
30 | }
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/3_Text/9_TextFontSizeRun.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | void main() {
4 | runApp(TextFontSizeRun());
5 | }
6 |
7 | class TextFontSizeRun extends StatelessWidget{
8 |
9 | @override
10 | Widget build(BuildContext context) {
11 | return MaterialApp(
12 | debugShowCheckedModeBanner: false,
13 | title:"Text Font Size",
14 | home: new Scaffold(
15 | body:
16 | Center(
17 | child:
18 | Text(
19 | 'F20',
20 | style: TextStyle(
21 | fontSize: 20,
22 | ),
23 | ),
24 | )
25 |
26 | ),
27 | );
28 | }
29 |
30 | }
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/lib/Codes_FrontEnd/2_Keywords/3_MaterialApp_Title_Theme.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 |
4 | void main() {
5 | runApp(MaterialAppTitleTheme());
6 | }
7 |
8 |
9 | class MaterialAppTitleTheme extends StatelessWidget{
10 |
11 | @override
12 | Widget build(BuildContext context) {
13 | return MaterialApp(
14 | debugShowCheckedModeBanner:false,
15 | title:"Demo",
16 | theme:ThemeData(
17 | primaryColor:Colors.teal,
18 | ),
19 | home:Scaffold(
20 | body:
21 | Center(
22 | child:Text("Show The Opened App In Phone!"),
23 | )
24 | ),
25 |
26 | );
27 | }
28 |
29 | }
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/lib/UserAction.dart:
--------------------------------------------------------------------------------
1 | import 'Landing_Loading_Page_Component/Btn_Facebook.dart';
2 | import 'Landing_Loading_Page_Component/Btn_Google.dart';
3 | import 'Landing_Login_Page.dart';
4 | import 'SettingPage.dart';
5 |
6 | Future