D1APP-26 radar static items added
This commit is contained in:
parent
8dc35af965
commit
8937970716
|
|
@ -21,6 +21,7 @@ class LightThemeConfig {
|
||||||
subtitle2: _subtitle2Text,
|
subtitle2: _subtitle2Text,
|
||||||
subtitle1: _subtitle1Text,
|
subtitle1: _subtitle1Text,
|
||||||
headline3: _headline3Text,
|
headline3: _headline3Text,
|
||||||
|
overline: _overlineText,
|
||||||
).apply(bodyColor: _black, displayColor: _black);
|
).apply(bodyColor: _black, displayColor: _black);
|
||||||
|
|
||||||
static const ColorScheme _colorScheme = ColorScheme(
|
static const ColorScheme _colorScheme = ColorScheme(
|
||||||
|
|
@ -63,6 +64,10 @@ class LightThemeConfig {
|
||||||
fontSize: 13,
|
fontSize: 13,
|
||||||
fontWeight: FontWeight.w400,
|
fontWeight: FontWeight.w400,
|
||||||
);
|
);
|
||||||
|
static const TextStyle _overlineText = TextStyle(
|
||||||
|
fontSize: 12,
|
||||||
|
fontWeight: FontWeight.w300,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
class DarkThemeConfig {
|
class DarkThemeConfig {
|
||||||
|
|
@ -88,6 +93,7 @@ class DarkThemeConfig {
|
||||||
subtitle2: _subtitle2Text,
|
subtitle2: _subtitle2Text,
|
||||||
subtitle1: _subtitle1Text,
|
subtitle1: _subtitle1Text,
|
||||||
headline3: _headline3Text,
|
headline3: _headline3Text,
|
||||||
|
overline: _overlineText,
|
||||||
).apply(bodyColor: text, displayColor: text);
|
).apply(bodyColor: text, displayColor: text);
|
||||||
|
|
||||||
static const ColorScheme _colorScheme = ColorScheme(
|
static const ColorScheme _colorScheme = ColorScheme(
|
||||||
|
|
@ -130,10 +136,10 @@ class DarkThemeConfig {
|
||||||
fontSize: 13,
|
fontSize: 13,
|
||||||
fontWeight: FontWeight.w400,
|
fontWeight: FontWeight.w400,
|
||||||
);
|
);
|
||||||
|
static const TextStyle _overlineText = TextStyle(
|
||||||
// Secondary colors
|
fontSize: 12,
|
||||||
static const Color secondaryColor = Color(0XFFD61515);
|
fontWeight: FontWeight.w300,
|
||||||
static const Color secondaryDark = Color(0XFF703838);
|
);
|
||||||
|
|
||||||
// Grey colors
|
// Grey colors
|
||||||
static const Color white = Color(0XFFFFFFFF);
|
static const Color white = Color(0XFFFFFFFF);
|
||||||
|
|
@ -164,7 +170,7 @@ extension DidvanColorScheme on ColorScheme {
|
||||||
: const Color(0XFF012348);
|
: const Color(0XFF012348);
|
||||||
Color get focusedBorder => brightness == Brightness.dark
|
Color get focusedBorder => brightness == Brightness.dark
|
||||||
? const Color(0XFFC8E0F4)
|
? const Color(0XFFC8E0F4)
|
||||||
: const Color(0XFFE6F3FA);
|
: const Color(0XFF195D80);
|
||||||
Color get title => brightness == Brightness.dark
|
Color get title => brightness == Brightness.dark
|
||||||
? const Color(0XFFD6D6D6)
|
? const Color(0XFFD6D6D6)
|
||||||
: const Color(0XFF1B3C59);
|
: const Color(0XFF1B3C59);
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ class _HomeState extends State<Home> with SingleTickerProviderStateMixin {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
Future.delayed(Duration(milliseconds: 500), () {
|
Future.delayed(const Duration(milliseconds: 400), () {
|
||||||
DesignConfig.context = context;
|
DesignConfig.context = context;
|
||||||
DesignConfig.updateSystemUiOverlayStyle();
|
DesignConfig.updateSystemUiOverlayStyle();
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@ import 'package:didvan/config/design_config.dart';
|
||||||
import 'package:didvan/config/theme_data.dart';
|
import 'package:didvan/config/theme_data.dart';
|
||||||
import 'package:didvan/pages/home/radar/widgets/categories_gird.dart';
|
import 'package:didvan/pages/home/radar/widgets/categories_gird.dart';
|
||||||
import 'package:didvan/pages/home/radar/widgets/categories_list.dart';
|
import 'package:didvan/pages/home/radar/widgets/categories_list.dart';
|
||||||
|
import 'package:didvan/pages/home/radar/widgets/radar_item.dart';
|
||||||
import 'package:didvan/pages/home/radar/widgets/search_field.dart';
|
import 'package:didvan/pages/home/radar/widgets/search_field.dart';
|
||||||
import 'package:didvan/pages/home/widgets/logo_app_bar.dart';
|
import 'package:didvan/pages/home/widgets/logo_app_bar.dart';
|
||||||
import 'package:didvan/widgets/didvan/text.dart';
|
import 'package:didvan/widgets/didvan/text.dart';
|
||||||
|
|
@ -33,35 +34,36 @@ class _RadarState extends State<Radar> {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
body: Stack(
|
body: Stack(
|
||||||
children: [
|
children: [
|
||||||
Theme(
|
CustomScrollView(
|
||||||
data: Theme.of(context).copyWith(
|
controller: _scrollController,
|
||||||
colorScheme: Theme.of(context).colorScheme.copyWith(
|
slivers: [
|
||||||
secondary: Colors.white,
|
const SliverToBoxAdapter(child: LogoAppBar()),
|
||||||
),
|
const SliverPadding(
|
||||||
),
|
padding: EdgeInsets.symmetric(horizontal: 16),
|
||||||
child: CustomScrollView(
|
sliver: SliverToBoxAdapter(
|
||||||
controller: _scrollController,
|
child: SearchField(),
|
||||||
slivers: [
|
),
|
||||||
const SliverToBoxAdapter(child: LogoAppBar()),
|
),
|
||||||
const SliverPadding(
|
SliverPadding(
|
||||||
padding: EdgeInsets.symmetric(horizontal: 16),
|
padding: const EdgeInsets.only(top: 300, right: 16, bottom: 20),
|
||||||
sliver: SliverToBoxAdapter(
|
sliver: SliverToBoxAdapter(
|
||||||
child: SearchField(),
|
child: DidvanText(
|
||||||
|
'آخرین رصد',
|
||||||
|
style: Theme.of(context).textTheme.subtitle1,
|
||||||
|
color: Theme.of(context).colorScheme.title,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
SliverPadding(
|
),
|
||||||
padding:
|
SliverPadding(
|
||||||
const EdgeInsets.only(top: 300, right: 16, bottom: 20),
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
||||||
sliver: SliverToBoxAdapter(
|
sliver: SliverList(
|
||||||
child: DidvanText(
|
delegate: SliverChildBuilderDelegate(
|
||||||
'آخرین رصد',
|
(_, index) => const RadarItem(),
|
||||||
style: Theme.of(context).textTheme.subtitle1,
|
childCount: 10,
|
||||||
color: Theme.of(context).colorScheme.title,
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
),
|
||||||
),
|
],
|
||||||
),
|
),
|
||||||
CategoriesRow1(isColapsed: _isColapsed),
|
CategoriesRow1(isColapsed: _isColapsed),
|
||||||
CategoriesRow2(isColapsed: _isColapsed),
|
CategoriesRow2(isColapsed: _isColapsed),
|
||||||
|
|
|
||||||
|
|
@ -67,10 +67,14 @@ class CategoriesList extends StatelessWidget {
|
||||||
width: 100,
|
width: 100,
|
||||||
padding: const EdgeInsets.all(4),
|
padding: const EdgeInsets.all(4),
|
||||||
alignment: Alignment.center,
|
alignment: Alignment.center,
|
||||||
child: DidvanText(category.title),
|
child: DidvanText(
|
||||||
|
category.title,
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
color: Theme.of(context).colorScheme.focusedBorder,
|
||||||
|
),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
color: Theme.of(context).colorScheme.title,
|
color: Theme.of(context).colorScheme.focusedBorder,
|
||||||
),
|
),
|
||||||
borderRadius: DesignConfig.lowBorderRadius,
|
borderRadius: DesignConfig.lowBorderRadius,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ class CategoryItem extends StatelessWidget {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: DesignConfig.lowBorderRadius,
|
borderRadius: DesignConfig.lowBorderRadius,
|
||||||
border: isColapsed
|
border: isColapsed
|
||||||
? Border.all(color: Theme.of(context).colorScheme.title)
|
? Border.all(color: Theme.of(context).colorScheme.focusedBorder)
|
||||||
: null,
|
: null,
|
||||||
),
|
),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,84 @@
|
||||||
|
import 'package:didvan/config/design_config.dart';
|
||||||
|
import 'package:didvan/config/theme_data.dart';
|
||||||
|
import 'package:didvan/constants/app_icons.dart';
|
||||||
|
import 'package:didvan/widgets/didvan/card.dart';
|
||||||
|
import 'package:didvan/widgets/didvan/divider.dart';
|
||||||
|
import 'package:didvan/widgets/didvan/text.dart';
|
||||||
|
import 'package:didvan/widgets/skeletun_image.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class RadarItem extends StatelessWidget {
|
||||||
|
const RadarItem({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return DidvanCard(
|
||||||
|
margin: const EdgeInsets.only(bottom: 20),
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Container(
|
||||||
|
padding: const EdgeInsets.all(4),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
borderRadius: DesignConfig.highBorderRadius,
|
||||||
|
),
|
||||||
|
child: DidvanText(
|
||||||
|
'برای مدیران',
|
||||||
|
style: Theme.of(context).textTheme.overline,
|
||||||
|
color: Theme.of(context).colorScheme.white,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
const DidvanText(
|
||||||
|
'نقش مهم فولاد در اقتصاد جهانی',
|
||||||
|
fontWeight: FontWeight.w600,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
const SkeletonImage(
|
||||||
|
imageUrl: 'https://wallpapercave.com/wp/wp9373116.jpg',
|
||||||
|
width: double.infinity,
|
||||||
|
height: 140,
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
DidvanText(
|
||||||
|
'رادار کسب و کار',
|
||||||
|
style: Theme.of(context).textTheme.overline,
|
||||||
|
color: Theme.of(context).colorScheme.caption,
|
||||||
|
),
|
||||||
|
const Spacer(),
|
||||||
|
DidvanText(
|
||||||
|
'هفته پیش | خواندن 5 دقیقه',
|
||||||
|
style: Theme.of(context).textTheme.overline,
|
||||||
|
color: Theme.of(context).colorScheme.caption,
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
const DidvanText(
|
||||||
|
'صنعت فولاد جوادی مجد سلیمی است پس باید به آن توجه زیادی شود تا بازار به انفجار نرسد. پس جواد مهربانگو باشیم...',
|
||||||
|
maxLine: 3,
|
||||||
|
),
|
||||||
|
const DidvanDivider(),
|
||||||
|
Row(
|
||||||
|
children: const [
|
||||||
|
Icon(
|
||||||
|
DidvanIcons.bookmark_regular,
|
||||||
|
),
|
||||||
|
Spacer(),
|
||||||
|
DidvanText('2'),
|
||||||
|
SizedBox(width: 4),
|
||||||
|
Icon(DidvanIcons.chats_regular),
|
||||||
|
SizedBox(width: 16),
|
||||||
|
DidvanText('10'),
|
||||||
|
SizedBox(width: 4),
|
||||||
|
Icon(DidvanIcons.evaluation_regular),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,7 +1,4 @@
|
||||||
import 'package:didvan/config/design_config.dart';
|
import 'package:didvan/config/design_config.dart';
|
||||||
import 'package:didvan/config/theme_data.dart';
|
|
||||||
import 'package:didvan/main.dart';
|
|
||||||
import 'package:didvan/pages/splash/splash_state.dart';
|
|
||||||
import 'package:didvan/providers/theme_provider.dart';
|
import 'package:didvan/providers/theme_provider.dart';
|
||||||
import 'package:didvan/routes/routes.dart';
|
import 'package:didvan/routes/routes.dart';
|
||||||
import 'package:didvan/services/app_initalizer.dart';
|
import 'package:didvan/services/app_initalizer.dart';
|
||||||
|
|
|
||||||
|
|
@ -3,12 +3,20 @@ import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class DidvanCard extends StatelessWidget {
|
class DidvanCard extends StatelessWidget {
|
||||||
final Widget child;
|
final Widget child;
|
||||||
const DidvanCard({Key? key, required this.child}) : super(key: key);
|
final EdgeInsets? padding;
|
||||||
|
final EdgeInsets? margin;
|
||||||
|
const DidvanCard(
|
||||||
|
{Key? key,
|
||||||
|
required this.child,
|
||||||
|
this.padding = const EdgeInsets.all(16),
|
||||||
|
this.margin})
|
||||||
|
: super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Container(
|
return Container(
|
||||||
padding: const EdgeInsets.all(16),
|
padding: padding,
|
||||||
|
margin: margin,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: DesignConfig.lowBorderRadius,
|
borderRadius: DesignConfig.lowBorderRadius,
|
||||||
color: Theme.of(context).colorScheme.surface,
|
color: Theme.of(context).colorScheme.surface,
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ class DidvanText extends StatelessWidget {
|
||||||
final FontWeight? fontWeight;
|
final FontWeight? fontWeight;
|
||||||
final double? fontSize;
|
final double? fontSize;
|
||||||
final TextAlign textAlign;
|
final TextAlign textAlign;
|
||||||
|
final int? maxLine;
|
||||||
|
|
||||||
const DidvanText(
|
const DidvanText(
|
||||||
this.text, {
|
this.text, {
|
||||||
|
|
@ -16,6 +17,7 @@ class DidvanText extends StatelessWidget {
|
||||||
this.fontSize,
|
this.fontSize,
|
||||||
this.fontWeight,
|
this.fontWeight,
|
||||||
this.textAlign = TextAlign.right,
|
this.textAlign = TextAlign.right,
|
||||||
|
this.maxLine,
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
@ -28,6 +30,7 @@ class DidvanText extends StatelessWidget {
|
||||||
fontSize: fontSize,
|
fontSize: fontSize,
|
||||||
),
|
),
|
||||||
textAlign: textAlign,
|
textAlign: textAlign,
|
||||||
|
maxLines: maxLine,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
|
|
@ -0,0 +1,10 @@
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class DidvanProgressIndicator extends StatelessWidget {
|
||||||
|
const DidvanProgressIndicator({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Container();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
import 'package:cached_network_image/cached_network_image.dart';
|
||||||
|
import 'package:didvan/config/design_config.dart';
|
||||||
|
import 'package:didvan/config/theme_data.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:skeleton_text/skeleton_text.dart';
|
||||||
|
|
||||||
|
class SkeletonImage extends StatelessWidget {
|
||||||
|
final String imageUrl;
|
||||||
|
final double width;
|
||||||
|
final double height;
|
||||||
|
final BorderRadius? borderRadius;
|
||||||
|
const SkeletonImage({
|
||||||
|
Key? key,
|
||||||
|
required this.imageUrl,
|
||||||
|
required this.width,
|
||||||
|
required this.height,
|
||||||
|
this.borderRadius,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return CachedNetworkImage(
|
||||||
|
width: width,
|
||||||
|
height: height,
|
||||||
|
imageUrl: imageUrl,
|
||||||
|
imageBuilder: (context, imageProvider) => Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
borderRadius: borderRadius ?? DesignConfig.lowBorderRadius,
|
||||||
|
image: DecorationImage(
|
||||||
|
image: imageProvider,
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
progressIndicatorBuilder: (context, url, progress) => SkeletonAnimation(
|
||||||
|
shimmerColor: Theme.of(context).colorScheme.border,
|
||||||
|
borderRadius: borderRadius ?? DesignConfig.lowBorderRadius,
|
||||||
|
child: Container(
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).colorScheme.disabledBackground,
|
||||||
|
),
|
||||||
|
height: height,
|
||||||
|
width: width,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
93
pubspec.lock
93
pubspec.lock
|
|
@ -15,6 +15,27 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.0"
|
version: "2.1.0"
|
||||||
|
cached_network_image:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: cached_network_image
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "3.2.0"
|
||||||
|
cached_network_image_platform_interface:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: cached_network_image_platform_interface
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.0"
|
||||||
|
cached_network_image_web:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: cached_network_image_web
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.1"
|
||||||
characters:
|
characters:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -97,6 +118,20 @@ packages:
|
||||||
description: flutter
|
description: flutter
|
||||||
source: sdk
|
source: sdk
|
||||||
version: "0.0.0"
|
version: "0.0.0"
|
||||||
|
flutter_blurhash:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: flutter_blurhash
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.6.0"
|
||||||
|
flutter_cache_manager:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: flutter_cache_manager
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "3.3.0"
|
||||||
flutter_lints:
|
flutter_lints:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
|
|
@ -231,6 +266,13 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.0"
|
version: "1.0.0"
|
||||||
|
octo_image:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: octo_image
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.0.1"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -301,6 +343,13 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.4"
|
version: "2.0.4"
|
||||||
|
pedantic:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: pedantic
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.11.1"
|
||||||
petitparser:
|
petitparser:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -350,6 +399,20 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.33"
|
version: "0.7.33"
|
||||||
|
rxdart:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: rxdart
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.27.3"
|
||||||
|
skeleton_text:
|
||||||
|
dependency: "direct main"
|
||||||
|
description:
|
||||||
|
name: skeleton_text
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.0"
|
||||||
sky_engine:
|
sky_engine:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description: flutter
|
description: flutter
|
||||||
|
|
@ -362,6 +425,20 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.8.1"
|
version: "1.8.1"
|
||||||
|
sqflite:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: sqflite
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "2.0.1"
|
||||||
|
sqflite_common:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: sqflite_common
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "2.1.0"
|
||||||
stack_trace:
|
stack_trace:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -383,6 +460,13 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "1.1.0"
|
||||||
|
synchronized:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: synchronized
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.0"
|
||||||
term_glyph:
|
term_glyph:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -404,6 +488,13 @@ packages:
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.3.0"
|
version: "1.3.0"
|
||||||
|
uuid:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: uuid
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "3.0.5"
|
||||||
vector_math:
|
vector_math:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|
@ -433,5 +524,5 @@ packages:
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "5.3.1"
|
version: "5.3.1"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=2.14.0 <3.0.0"
|
dart: ">=2.15.0 <3.0.0"
|
||||||
flutter: ">=2.5.0"
|
flutter: ">=2.5.0"
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,8 @@ dependencies:
|
||||||
path_provider: ^2.0.8
|
path_provider: ^2.0.8
|
||||||
flutter_spinkit: ^5.1.0
|
flutter_spinkit: ^5.1.0
|
||||||
flutter_svg: ^1.0.0
|
flutter_svg: ^1.0.0
|
||||||
|
cached_network_image: ^3.2.0
|
||||||
|
skeleton_text: ^3.0.0
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue