bosra_elcham 1.0.0+2 copy "bosra_elcham: ^1.0.0+2" to clipboard
bosra_elcham: ^1.0.0+2 copied to clipboard

discontinued

Developed by Eng Mouaz M Shahmeh Bosra El Cham is Flutter App for Bosra ElCham city in Syria which have historical and geographical description

example/lib/main.dart

import 'package:bosra_elcham/src/home/presentation/splash.dart';
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: const <Widget>[
            SplashScreen(),
          ],
        ),
      ),
    );
  }
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Developed by Eng Mouaz M Shahmeh Bosra El Cham is Flutter App for Bosra ElCham city in Syria which have historical and geographical description

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

animated_text_kit, cloud_firestore, cupertino_icons, firebase_auth, firebase_core, firebase_storage, flutter, flutter_localizations, go_router, intl, provider, shared_preferences

More

Packages that depend on bosra_elcham