Merge branch 'NEW_REFRESH_LDE'
continuous-integration/drone/push Build is passing Details

FAVORITE_MUSICS_EKA
emre.kartal 2 years ago
commit 46a11ded7c

@ -3,8 +3,7 @@ package="com.example.justmusic">
<application <application
android:label="justmusic" android:label="justmusic"
android:name="${applicationName}" android:name="${applicationName}"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher">
android:enableOnBackInvokedCallback="true">
<activity <activity
android:name=".MainActivity" android:name=".MainActivity"

@ -1,438 +1,438 @@
import 'package:auto_size_text/auto_size_text.dart'; import 'package:auto_size_text/auto_size_text.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart'; import 'package:google_fonts/google_fonts.dart';
import 'package:gradient_borders/box_borders/gradient_box_border.dart'; import 'package:gradient_borders/box_borders/gradient_box_border.dart';
import 'package:text_scroll/text_scroll.dart'; import 'package:text_scroll/text_scroll.dart';
import 'package:zoom_tap_animation/zoom_tap_animation.dart'; import 'package:zoom_tap_animation/zoom_tap_animation.dart';
import '../model/Post.dart'; import '../model/Post.dart';
class PostComponent extends StatefulWidget { class PostComponent extends StatefulWidget {
final Function(int)? callback; final Function(Post)? callback;
final Post post; final Post post;
final int index; final int index;
PostComponent({Key? key, required this.callback, required this.post, required this.index}) : super(key: key); PostComponent({Key? key, required this.callback, required this.post, required this.index}) : super(key: key);
@override @override
State<PostComponent> createState() => _PostComponentState(); State<PostComponent> createState() => _PostComponentState();
} }
class _PostComponentState extends State<PostComponent> with TickerProviderStateMixin { class _PostComponentState extends State<PostComponent> with TickerProviderStateMixin {
bool choice = false; bool choice = false;
DateTime today = DateTime.now(); DateTime today = DateTime.now();
void switchChoice() { void switchChoice() {
setState(() { setState(() {
choice = !choice; choice = !choice;
}); });
} }
@override @override
void initState() { void initState() {
print("post: ${widget.post.date.toString()}"); print("post: ${widget.post.date.toString()}");
print("ajrd: ${DateTime.now().toString()}"); print("ajrd: ${DateTime.now().toString()}");
super.initState(); super.initState();
} }
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return GestureDetector( return GestureDetector(
onTap: switchChoice, onTap: switchChoice,
child: LayoutBuilder( child: LayoutBuilder(
builder: (BuildContext context, BoxConstraints constraints) { builder: (BuildContext context, BoxConstraints constraints) {
if (widget.callback == null) { if (widget.callback == null) {
return SizedBox( return SizedBox(
width: double.infinity, width: double.infinity,
child: Column( child: Column(
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
ClipOval( ClipOval(
child: SizedBox.fromSize( child: SizedBox.fromSize(
// Image radius // Image radius
child: Image( child: Image(
image: NetworkImage(widget.post.user.pp), image: NetworkImage(widget.post.user.pp),
width: 40, width: 40,
), ),
), ),
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: const EdgeInsets.only(left: 10), padding: const EdgeInsets.only(left: 10),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
widget.post.user.pseudo, widget.post.user.pseudo,
style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600), style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600),
), ),
widget.post.location.item2 != null widget.post.location.item2 != null
? Text( ? Text(
"${widget.post.location.item1}, ${widget.post.location.item2}", "${widget.post.location.item1}, ${widget.post.location.item2}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
: Text( : Text(
"", "",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
], ],
), ),
), ),
), ),
DateTime(today.year, today.month, today.day).isAtSameMomentAs( DateTime(today.year, today.month, today.day).isAtSameMomentAs(
DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day)) DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day))
? Text( ? Text(
"Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}", "Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
) )
: Text( : Text(
"${widget.post.date.day}/${widget.post.date.month}/${widget.post.date.year}-${widget.post.date.hour}:${widget.post.date.minute}", "${widget.post.date.day}/${widget.post.date.month}/${widget.post.date.year}-${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
), ),
], ],
), ),
SizedBox(height: 10), SizedBox(height: 10),
ZoomTapAnimation( ZoomTapAnimation(
onTap: () { onTap: () {
if (widget.post.selfie != null) { if (widget.post.selfie != null) {
switchChoice(); switchChoice();
} }
}, },
enableLongTapRepeatEvent: false, enableLongTapRepeatEvent: false,
longTapRepeatDuration: const Duration(milliseconds: 100), longTapRepeatDuration: const Duration(milliseconds: 100),
begin: 1.0, begin: 1.0,
end: 0.99, end: 0.99,
beginDuration: const Duration(milliseconds: 70), beginDuration: const Duration(milliseconds: 70),
endDuration: const Duration(milliseconds: 100), endDuration: const Duration(milliseconds: 100),
beginCurve: Curves.decelerate, beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine, endCurve: Curves.easeInOutSine,
child: AspectRatio( child: AspectRatio(
aspectRatio: 1 / 1, aspectRatio: 1 / 1,
child: Container( child: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
// add border // add border
border: const GradientBoxBorder( border: const GradientBoxBorder(
gradient: LinearGradient(colors: [ gradient: LinearGradient(colors: [
Colors.transparent, Colors.transparent,
Color(0xFF323232), Color(0xFF323232),
], begin: Alignment.topCenter, end: Alignment.bottomCenter), ], begin: Alignment.topCenter, end: Alignment.bottomCenter),
width: 2.5, width: 2.5,
), ),
// set border radius // set border radius
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(18), borderRadius: BorderRadius.circular(18),
// implement image // implement image
child: Stack( child: Stack(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
children: [ children: [
Image( Image(
image: NetworkImage(choice ? widget.post.selfie! : widget.post.music.cover!), image: NetworkImage(choice ? widget.post.selfie! : widget.post.music.cover!),
fit: BoxFit.cover, fit: BoxFit.cover,
width: double.infinity, width: double.infinity,
), ),
widget.post.selfie != null widget.post.selfie != null
? Positioned( ? Positioned(
top: 0, top: 0,
right: 0, right: 0,
child: Padding( child: Padding(
padding: EdgeInsets.all(12), padding: EdgeInsets.all(12),
child: Container( child: Container(
constraints: BoxConstraints(maxWidth: 140, maxHeight: 140), constraints: BoxConstraints(maxWidth: 140, maxHeight: 140),
width: 90.sp, width: 90.sp,
height: 90.sp, height: 90.sp,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
// add border // add border
border: Border.all(width: 3, color: Colors.white), border: Border.all(width: 3, color: Colors.white),
// set border radius // set border radius
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(13), borderRadius: BorderRadius.circular(13),
// implement image // implement image
child: Image( child: Image(
image: NetworkImage( image: NetworkImage(
choice ? widget.post.music.cover! : widget.post.selfie!), choice ? widget.post.music.cover! : widget.post.selfie!),
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
), ),
), ),
)) ))
: Container(), : Container(),
], ],
), ),
), ),
), ),
)), )),
SizedBox(height: 15), SizedBox(height: 15),
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
mainAxisAlignment: MainAxisAlignment.spaceBetween, mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [ children: [
Flexible( Flexible(
flex: 8, flex: 8,
child: TextScroll( child: TextScroll(
widget.post.music.artists.first.name!, widget.post.music.artists.first.name!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h), height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
velocity: Velocity(pixelsPerSecond: Offset(20, 0)), velocity: Velocity(pixelsPerSecond: Offset(20, 0)),
)), )),
Padding( Padding(
padding: EdgeInsets.only(bottom: 10.h, right: 5.w, left: 5.w), padding: EdgeInsets.only(bottom: 10.h, right: 5.w, left: 5.w),
child: ClipOval( child: ClipOval(
child: Container( child: Container(
width: 5.h, width: 5.h,
height: 5.h, height: 5.h,
color: Colors.white, color: Colors.white,
), ),
), ),
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: EdgeInsets.only(bottom: 2), padding: EdgeInsets.only(bottom: 2),
child: TextScroll( child: TextScroll(
widget.post.music.title!, widget.post.music.title!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, color: Colors.white, fontWeight: FontWeight.w300, fontSize: 16.h), height: 1, color: Colors.white, fontWeight: FontWeight.w300, fontSize: 16.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
velocity: Velocity(pixelsPerSecond: Offset(50, 20)), velocity: Velocity(pixelsPerSecond: Offset(50, 20)),
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
), ),
)), )),
Container(width: 10), Container(width: 10),
AutoSizeText( AutoSizeText(
widget.post.music.date.toString(), widget.post.music.date.toString(),
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.5), fontWeight: FontWeight.w300, fontSize: 16.h), color: Colors.white.withOpacity(0.5), fontWeight: FontWeight.w300, fontSize: 16.h),
textAlign: TextAlign.end, textAlign: TextAlign.end,
maxFontSize: 20, maxFontSize: 20,
), ),
], ],
), ),
], ],
)); ));
} }
return SizedBox( return SizedBox(
width: double.infinity, width: double.infinity,
child: Column( child: Column(
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
ClipOval( ClipOval(
child: SizedBox.fromSize( child: SizedBox.fromSize(
// Image radius // Image radius
child: Image( child: Image(
image: NetworkImage(widget.post.user.pp), image: NetworkImage(widget.post.user.pp),
width: 40, width: 40,
), ),
), ),
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: const EdgeInsets.only(left: 10), padding: const EdgeInsets.only(left: 10),
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Text( Text(
widget.post.user.pseudo, widget.post.user.pseudo,
style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600), style: GoogleFonts.plusJakartaSans(color: Colors.white, fontWeight: FontWeight.w600),
), ),
widget.post.location.item2 != null widget.post.location.item2 != null
? Text( ? Text(
"${widget.post.location.item1}, ${widget.post.location.item2}", "${widget.post.location.item1}, ${widget.post.location.item2}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
: Text( : Text(
"", "",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), color: Colors.white.withOpacity(0.4),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 13), fontSize: 13),
) )
], ],
), ),
), ),
), ),
DateTime(today.year, today.month, today.day).isAtSameMomentAs( DateTime(today.year, today.month, today.day).isAtSameMomentAs(
DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day)) DateTime(widget.post.date.year, widget.post.date.month, widget.post.date.day))
? Text( ? Text(
"Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}", "Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
) )
: Text( : Text(
"hier, ${widget.post.date.hour}:${widget.post.date.minute}", "hier, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13), color: Colors.white.withOpacity(0.4), fontWeight: FontWeight.w300, fontSize: 13),
), ),
], ],
), ),
SizedBox(height: 10), SizedBox(height: 10),
ZoomTapAnimation( ZoomTapAnimation(
onTap: () { onTap: () {
widget.callback!(widget.index); widget.callback!(widget.post);
}, },
enableLongTapRepeatEvent: false, enableLongTapRepeatEvent: false,
longTapRepeatDuration: const Duration(milliseconds: 100), longTapRepeatDuration: const Duration(milliseconds: 100),
begin: 1.0, begin: 1.0,
end: 0.99, end: 0.99,
beginDuration: const Duration(milliseconds: 70), beginDuration: const Duration(milliseconds: 70),
endDuration: const Duration(milliseconds: 100), endDuration: const Duration(milliseconds: 100),
beginCurve: Curves.decelerate, beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine, endCurve: Curves.easeInOutSine,
child: AspectRatio( child: AspectRatio(
aspectRatio: 1 / 1, aspectRatio: 1 / 1,
child: Container( child: Container(
decoration: BoxDecoration( decoration: BoxDecoration(
// add border // add border
border: const GradientBoxBorder( border: const GradientBoxBorder(
gradient: LinearGradient(colors: [ gradient: LinearGradient(colors: [
Colors.transparent, Colors.transparent,
Color(0xFF323232), Color(0xFF323232),
], begin: Alignment.topCenter, end: Alignment.bottomCenter), ], begin: Alignment.topCenter, end: Alignment.bottomCenter),
width: 2.5, width: 2.5,
), ),
// set border radius // set border radius
borderRadius: BorderRadius.circular(20), borderRadius: BorderRadius.circular(20),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(18), borderRadius: BorderRadius.circular(18),
// implement image // implement image
child: Stack( child: Stack(
alignment: Alignment.bottomCenter, alignment: Alignment.bottomCenter,
children: [ children: [
Image( Image(
image: NetworkImage(widget.post.music.cover!), image: NetworkImage(widget.post.music.cover!),
fit: BoxFit.cover, fit: BoxFit.cover,
width: double.infinity, width: double.infinity,
), ),
Image( Image(
image: AssetImage("assets/images/shadow_post.png"), image: AssetImage("assets/images/shadow_post.png"),
opacity: AnimationController(vsync: this, value: 0.7), opacity: AnimationController(vsync: this, value: 0.7),
fit: BoxFit.fitHeight, fit: BoxFit.fitHeight,
width: double.infinity, width: double.infinity,
), ),
widget.post.description == null widget.post.description == null
? Container() ? Container()
: Padding( : Padding(
padding: EdgeInsets.all(15), padding: EdgeInsets.all(15),
child: AutoSizeText( child: AutoSizeText(
'${widget.post.description}', '${widget.post.description}',
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white, fontWeight: FontWeight.w400, fontSize: 15.sp), color: Colors.white, fontWeight: FontWeight.w400, fontSize: 15.sp),
maxFontSize: 20, maxFontSize: 20,
maxLines: 1, maxLines: 1,
), ),
), ),
widget.post.selfie != null widget.post.selfie != null
? Positioned( ? Positioned(
top: 0, top: 0,
right: 0, right: 0,
child: Padding( child: Padding(
padding: EdgeInsets.all(12), padding: EdgeInsets.all(12),
child: Container( child: Container(
constraints: BoxConstraints(maxWidth: 140, maxHeight: 140), constraints: BoxConstraints(maxWidth: 140, maxHeight: 140),
width: 90.sp, width: 90.sp,
height: 90.sp, height: 90.sp,
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
// add border // add border
border: Border.all(width: 3, color: Colors.white), border: Border.all(width: 3, color: Colors.white),
// set border radius // set border radius
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
), ),
child: ClipRRect( child: ClipRRect(
borderRadius: BorderRadius.circular(13), borderRadius: BorderRadius.circular(13),
// implement image // implement image
child: Image( child: Image(
image: NetworkImage(widget.post.selfie!), image: NetworkImage(widget.post.selfie!),
fit: BoxFit.cover, fit: BoxFit.cover,
), ),
), ),
), ),
)) ))
: Container(), : Container(),
], ],
), ),
), ),
), ),
)), )),
SizedBox(height: 15), SizedBox(height: 15),
SizedBox( SizedBox(
height: 60, height: 40,
child: Column( child: Column(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
Row( Row(
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.start, mainAxisAlignment: MainAxisAlignment.start,
children: [ children: [
Expanded( Expanded(
flex: 8, flex: 8,
child: Padding( child: Padding(
padding: EdgeInsets.only(bottom: 2), padding: EdgeInsets.only(bottom: 2),
child: TextScroll( child: TextScroll(
widget.post.music.title!, widget.post.music.title!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h), height: 1, color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
velocity: Velocity(pixelsPerSecond: Offset(50, 20)), velocity: Velocity(pixelsPerSecond: Offset(50, 20)),
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
), ),
)), )),
Container(width: 10), Container(width: 10),
AutoSizeText( AutoSizeText(
widget.post.music.date.toString(), widget.post.music.date.toString(),
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h), color: Colors.white, fontWeight: FontWeight.w600, fontSize: 26.h),
textAlign: TextAlign.end, textAlign: TextAlign.end,
maxFontSize: 20, maxFontSize: 20,
), ),
], ],
), ),
Expanded( Expanded(
flex: 8, flex: 8,
child: TextScroll( child: TextScroll(
widget.post.music.artists.first.name!, widget.post.music.artists.first.name!,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(
height: 1, height: 1,
color: Colors.white.withOpacity(0.5), color: Colors.white.withOpacity(0.5),
fontWeight: FontWeight.w300, fontWeight: FontWeight.w300,
fontSize: 16.h), fontSize: 16.h),
mode: TextScrollMode.endless, mode: TextScrollMode.endless,
pauseBetween: Duration(milliseconds: 500), pauseBetween: Duration(milliseconds: 500),
velocity: Velocity(pixelsPerSecond: Offset(20, 0)), velocity: Velocity(pixelsPerSecond: Offset(20, 0)),
)), )),
], ],
), ),
) )
], ],
)); ));
}, },
), ),
); );
} }
} }

@ -15,17 +15,15 @@ import '../values/constants.dart';
class TopNavBarComponent extends StatefulWidget { class TopNavBarComponent extends StatefulWidget {
final Function(bool) callback; final Function(bool) callback;
final bool choice;
const TopNavBarComponent({Key? key, required this.callback}) const TopNavBarComponent({Key? key, required this.callback, required this.choice}) : super(key: key);
: super(key: key);
@override @override
State<TopNavBarComponent> createState() => _TopNavBarComponentState(); State<TopNavBarComponent> createState() => _TopNavBarComponentState();
} }
class _TopNavBarComponentState extends State<TopNavBarComponent> class _TopNavBarComponentState extends State<TopNavBarComponent> with TickerProviderStateMixin {
with TickerProviderStateMixin { late bool choice;
bool choice = true;
bool isDismissed = true; bool isDismissed = true;
@ -140,6 +138,7 @@ class _TopNavBarComponentState extends State<TopNavBarComponent>
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
choice = widget.choice;
return Padding( return Padding(
padding: const EdgeInsets.only(top: defaultPadding), padding: const EdgeInsets.only(top: defaultPadding),
child: Container( child: Container(

@ -1,19 +1,14 @@
import 'dart:async'; import 'dart:async';
import 'package:flutter/Material.dart'; import 'package:flutter/Material.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter_keyboard_visibility/flutter_keyboard_visibility.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:flutter_svg/svg.dart'; import 'package:flutter_svg/svg.dart';
import 'package:google_fonts/google_fonts.dart'; import 'package:google_fonts/google_fonts.dart';
import 'package:text_scroll/text_scroll.dart'; import 'package:text_scroll/text_scroll.dart';
import 'package:zoom_tap_animation/zoom_tap_animation.dart'; import 'package:zoom_tap_animation/zoom_tap_animation.dart';
import '../components/button_play_component.dart'; import '../components/button_play_component.dart';
import '../components/comment_component.dart'; import '../components/comment_component.dart';
import '../main.dart'; import '../main.dart';
import '../model/Post.dart'; import '../model/Post.dart';
import '../model/Comment.dart'; import '../model/Comment.dart';
@ -57,255 +52,99 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
@override @override
void initState() { void initState() {
print("post: ${widget.post.date.toString()}");
print("ajrd: ${DateTime.now().toString()}");
myFocusNode = FocusNode();
var keyboardVisibilityController = KeyboardVisibilityController();
print(
'Keyboard visibility direct query: ${keyboardVisibilityController.isVisible}');
super.initState(); super.initState();
myFocusNode = FocusNode();
keyboardSubscription =
keyboardVisibilityController.onChange.listen((bool visible) {
if (!visible) {
myFocusNode.unfocus();
}
});
} }
final ScrollController _scrollController = ScrollController(); final ScrollController _scrollController = ScrollController();
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return GestureDetector( return Container(
onTap: () { height: 760.h,
FocusScopeNode currentFocus = FocusScope.of(context); child: Column(
if (!currentFocus.hasPrimaryFocus) { children: [
currentFocus.unfocus(); Expanded(
resetFullScreen(); child: Stack(
} children: [
}, ScrollConfiguration(
child: Container( behavior: MyBehavior(),
height: 760.h, child: SingleChildScrollView(
child: Column( controller: _scrollController,
children: [ physics: AlwaysScrollableScrollPhysics(),
Expanded( child: Stack(
child: Stack( clipBehavior: Clip.hardEdge,
children: [ children: [
ScrollConfiguration( Align(
behavior: MyBehavior(), alignment: Alignment.topCenter,
child: SingleChildScrollView( child: Container(
controller: _scrollController, height: 400,
physics: AlwaysScrollableScrollPhysics(), width: double.infinity,
child: Stack( child: FadeInImage.assetNetwork(
clipBehavior: Clip.hardEdge, placeholder: "assets/images/loadingPlaceholder.gif",
children: [ image: choice ? widget.post.selfie! : widget.post.music.cover!,
Align(
alignment: Alignment.topCenter,
child: Container(
height: 400,
width: double.infinity, width: double.infinity,
child: FadeInImage.assetNetwork( fit: BoxFit.cover,
placeholder:
"assets/images/loadingPlaceholder.gif",
image: choice
? widget.post.selfie!
: widget.post.music.cover!,
width: double.infinity,
fit: BoxFit.cover,
),
), ),
), ),
Column( ),
children: [ Column(
Container( children: [
height: 200, Container(
margin: EdgeInsets.only(top: 230), height: 200,
width: double.infinity, margin: EdgeInsets.only(top: 230),
decoration: const BoxDecoration( width: double.infinity,
gradient: LinearGradient( decoration: const BoxDecoration(
begin: Alignment.topCenter, gradient: LinearGradient(
end: Alignment.bottomCenter, begin: Alignment.topCenter,
colors: [Colors.transparent, bgModal], end: Alignment.bottomCenter,
stops: [0, 0.8], colors: [Colors.transparent, bgModal],
), stops: [0, 0.8],
), ),
child: Padding( ),
padding: child: Padding(
const EdgeInsets.fromLTRB(20, 0, 20, 10), padding: const EdgeInsets.fromLTRB(20, 0, 20, 10),
child: Row( child: Row(
crossAxisAlignment: CrossAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.end,
children: [ children: [
Padding( Padding(
padding: padding: const EdgeInsets.only(right: 10),
const EdgeInsets.only(right: 10), child: choice
child: choice ? Padding(
? Padding( padding: const EdgeInsets.all(4),
padding: child: ClipOval(
const EdgeInsets.all(4), child: SizedBox.fromSize(
child: ClipOval( // Image radius
child: SizedBox.fromSize( child: Image(
// Image radius image: NetworkImage(widget.post.user.pp),
child: Image( width: 45,
image: NetworkImage(
widget.post.user.pp),
width: 45,
),
), ),
), ),
)
: widget.post.music.previewUrl !=
null
? ButtonPlayComponent(
music: widget.post.music)
: Container(),
),
Flexible(
child: Column(
mainAxisAlignment:
MainAxisAlignment.end,
crossAxisAlignment:
CrossAxisAlignment.start,
children: [
Flexible(
child: Row(
crossAxisAlignment:
CrossAxisAlignment.end,
children: [
Expanded(
child: ScrollConfiguration(
behavior: ScrollBehavior()
.copyWith(
scrollbars:
false),
child: TextScroll(
choice
? widget.post.user
.pseudo
: widget.post.music
.title!,
style: GoogleFonts
.plusJakartaSans(
height: 1,
color: Colors.white,
fontWeight:
FontWeight.w800,
fontSize: 22,
),
mode: TextScrollMode
.endless,
pauseBetween: Duration(
milliseconds: 500),
velocity: Velocity(
pixelsPerSecond:
Offset(20, 0)),
),
),
),
Padding(
padding:
const EdgeInsets.only(
left: 20.0),
child: choice
? DateTime(
today.year,
today.month,
today.day)
.isAtSameMomentAs(
DateTime(
widget.post.date
.year,
widget.post.date
.month,
widget.post.date
.day,
),
)
? Text(
"Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts
.plusJakartaSans(
height: 1,
color: Colors
.white,
fontWeight:
FontWeight
.w900,
fontSize: 18,
),
)
: Text(
"hier, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts
.plusJakartaSans(
height: 1,
color: Colors
.white,
fontWeight:
FontWeight
.w900,
fontSize: 18,
),
)
: Text(
widget
.post.music.date
.toString(),
style: GoogleFonts
.plusJakartaSans(
height: 1,
color:
Colors.white,
fontWeight:
FontWeight
.w900,
fontSize: 18,
),
),
),
],
), ),
), )
choice : widget.post.music.previewUrl != null
? widget.post.location.item2 != ? ButtonPlayComponent(music: widget.post.music)
null : Container(),
? Text( ),
"${widget.post.location.item1}, ${widget.post.location.item2}", Flexible(
style: GoogleFonts child: Column(
.plusJakartaSans( mainAxisAlignment: MainAxisAlignment.end,
color: Colors.white crossAxisAlignment: CrossAxisAlignment.start,
.withOpacity(0.5), children: [
fontWeight: Flexible(
FontWeight.w400, child: Row(
fontSize: 15, crossAxisAlignment: CrossAxisAlignment.end,
), children: [
) Expanded(
: Text( child: ScrollConfiguration(
"", behavior: ScrollBehavior().copyWith(scrollbars: false),
style: GoogleFonts
.plusJakartaSans(
color: Colors.white
.withOpacity(0.4),
fontWeight:
FontWeight.w300,
fontSize: 13,
),
)
: ScrollConfiguration(
behavior: ScrollBehavior()
.copyWith(
scrollbars: false),
child: TextScroll( child: TextScroll(
widget.post.music.artists choice ? widget.post.user.pseudo : widget.post.music.title!,
.first.name!, style: GoogleFonts.plusJakartaSans(
style: GoogleFonts
.plusJakartaSans(
height: 1, height: 1,
color: Colors.white, color: Colors.white,
fontWeight: fontWeight: FontWeight.w800,
FontWeight.w500, fontSize: 22,
fontSize: 17,
), ),
mode: TextScrollMode mode: TextScrollMode
.endless, .endless,
@ -316,316 +155,335 @@ class _DetailPostScreenState extends State<DetailPostScreen> {
Offset(20, 0)), Offset(20, 0)),
), ),
), ),
], ),
), Padding(
), padding: const EdgeInsets.only(left: 20.0),
], child: choice
), ? DateTime(today.year, today.month, today.day).isAtSameMomentAs(
), DateTime(
), widget.post.date.year,
widget.post.description != null widget.post.date.month,
? Align( widget.post.date.day,
alignment: Alignment.bottomLeft,
child: Padding(
padding: const EdgeInsets.fromLTRB(
50, 35, 50, 35),
child: Text(
widget.post.description!,
textAlign: TextAlign.left,
style: GoogleFonts.plusJakartaSans(
height: 1,
color: Colors.white,
fontWeight: FontWeight.w400,
fontSize: 14,
),
),
),
)
: Container(
height: 30,
),
Container(
width: double.infinity,
decoration: const BoxDecoration(
color: bgAppBar,
border: Border(
top: BorderSide(
color: Color(0xFF262626),
width: 1.0,
),
),
),
child: Column(
children: [
Padding(
padding:
EdgeInsets.symmetric(vertical: 20),
child: Row(
mainAxisAlignment:
MainAxisAlignment.spaceEvenly,
children: [
SvgPicture.asset(
"assets/images/heart.svg",
semanticsLabel: 'Like Logo'),
GestureDetector(
onTap: () {
myFocusNode.requestFocus();
},
child: SvgPicture.asset(
"assets/images/chat.svg",
semanticsLabel: 'Chat Logo'),
),
SvgPicture.asset(
"assets/images/add.svg",
semanticsLabel:
'Add playlist Logo'),
SvgPicture.asset(
"assets/images/save.svg",
semanticsLabel: 'Save Logo'),
SvgPicture.asset(
"assets/images/report.svg",
semanticsLabel: 'Report Logo'),
],
),
),
FutureBuilder<List<Comment>>(
future: MyApp.commentViewModel
.getCommentsByPostId(widget.post.id),
builder: (BuildContext context,
AsyncSnapshot<List<Comment>>
snapshot) {
if (snapshot.hasData) {
print("test:");
return Column(
children: [
snapshot.data!.length > 0
? Padding(
padding:
const EdgeInsets.all(
15.0),
child: RichText(
text: TextSpan(
text: snapshot
.data!.length
.toString(),
style: GoogleFonts
.plusJakartaSans(
color: Colors.white,
fontWeight:
FontWeight.w800,
), ),
children: [ )
TextSpan( ? Text(
text: snapshot "Aujourd'hui, ${widget.post.date.hour}:${widget.post.date.minute}",
.data! style: GoogleFonts.plusJakartaSans(
.length > height: 1,
1 color: Colors.white,
? " commentaires" fontWeight: FontWeight.w900,
: " commentaire", fontSize: 18,
style: GoogleFonts
.plusJakartaSans(
color: Colors
.white,
fontWeight:
FontWeight
.w400,
), ),
), )
], : Text(
"hier, ${widget.post.date.hour}:${widget.post.date.minute}",
style: GoogleFonts.plusJakartaSans(
height: 1,
color: Colors.white,
fontWeight: FontWeight.w900,
fontSize: 18,
),
)
: Text(
widget.post.music.date.toString(),
style: GoogleFonts.plusJakartaSans(
height: 1,
color: Colors.white,
fontWeight: FontWeight.w900,
fontSize: 18,
),
), ),
),
],
),
),
choice
? widget.post.location.item2 != null
? Text(
"${widget.post.location.item1}, ${widget.post.location.item2}",
style: GoogleFonts.plusJakartaSans(
color: Colors.white.withOpacity(0.5),
fontWeight: FontWeight.w400,
fontSize: 15,
), ),
) )
: Container(), : Text(
snapshot.data!.length > 0 "",
? Padding( style: GoogleFonts.plusJakartaSans(
padding: const EdgeInsets color: Colors.white.withOpacity(0.4),
.fromLTRB( fontWeight: FontWeight.w300,
20, 0, 20, 20), fontSize: 13,
child: ListView.builder(
shrinkWrap: true,
physics:
NeverScrollableScrollPhysics(),
itemCount: snapshot
.data?.length,
itemBuilder:
(BuildContext
context,
int index) {
return CommentComponent(
comment: snapshot
.data![
index]);
},
), ),
) )
: Container(), : ScrollConfiguration(
], behavior: ScrollBehavior().copyWith(scrollbars: false),
); child: TextScroll(
} else { widget.post.music.artists.first.name!,
return Container( style: GoogleFonts.plusJakartaSans(
child: Center( height: 1,
child: color: Colors.white,
CupertinoActivityIndicator(), fontWeight: FontWeight.w500,
), fontSize: 17,
); ),
} mode: TextScrollMode.endless,
}, pauseBetween: Duration(milliseconds: 500),
velocity: Velocity(pixelsPerSecond: Offset(20, 0)),
),
),
],
),
), ),
], ],
), ),
), ),
], ),
), widget.post.description != null
widget.post.selfie != null ? Align(
? Align( alignment: Alignment.bottomLeft,
alignment: Alignment.topRight, child: Padding(
child: ZoomTapAnimation( padding: const EdgeInsets.fromLTRB(50, 35, 50, 35),
onTap: () { child: Text(
if (widget.post.selfie != null) { widget.post.description!,
switchChoice(); textAlign: TextAlign.left,
} style: GoogleFonts.plusJakartaSans(
}, height: 1,
enableLongTapRepeatEvent: false, color: Colors.white,
longTapRepeatDuration: fontWeight: FontWeight.w400,
const Duration(milliseconds: 100), fontSize: 14,
begin: 1.0, ),
end: 0.96,
beginDuration:
const Duration(milliseconds: 70),
endDuration:
const Duration(milliseconds: 100),
beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine,
child: Container(
margin: EdgeInsets.all(20),
width: 120,
height: 120,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
border: Border.all(
width: 4, color: Colors.white),
), ),
child: ClipRRect( ),
borderRadius: BorderRadius.circular(15), )
// implementer l'image : Container(
child: Image( height: 30,
image: NetworkImage(choice ),
? widget.post.music.cover! Container(
: widget.post.selfie!), width: double.infinity,
fit: BoxFit.cover, decoration: const BoxDecoration(
color: bgAppBar,
border: Border(
top: BorderSide(
color: Color(0xFF262626),
width: 1.0,
),
),
),
child: Column(
children: [
Padding(
padding: EdgeInsets.symmetric(vertical: 20),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
SvgPicture.asset("assets/images/heart.svg", semanticsLabel: 'Like Logo'),
GestureDetector(
onTap: () {
myFocusNode.requestFocus();
},
child:
SvgPicture.asset("assets/images/chat.svg", semanticsLabel: 'Chat Logo'),
), ),
SvgPicture.asset("assets/images/add.svg", semanticsLabel: 'Add playlist Logo'),
SvgPicture.asset("assets/images/save.svg", semanticsLabel: 'Save Logo'),
SvgPicture.asset("assets/images/report.svg", semanticsLabel: 'Report Logo'),
],
),
),
FutureBuilder<List<Comment>>(
future: MyApp.commentViewModel.getCommentsByPostId(widget.post.id),
builder: (BuildContext context, AsyncSnapshot<List<Comment>> snapshot) {
if (snapshot.hasData) {
print("test:");
return Column(
children: [
snapshot.data!.length > 0
? Padding(
padding: const EdgeInsets.all(15.0),
child: RichText(
text: TextSpan(
text: snapshot.data!.length.toString(),
style: GoogleFonts.plusJakartaSans(
color: Colors.white,
fontWeight: FontWeight.w800,
),
children: [
TextSpan(
text: snapshot.data!.length > 1
? " commentaires"
: " commentaire",
style: GoogleFonts.plusJakartaSans(
color: Colors.white,
fontWeight: FontWeight.w400,
),
),
],
),
),
)
: Container(),
snapshot.data!.length > 0
? Padding(
padding: const EdgeInsets.fromLTRB(20, 0, 20, 20),
child: ListView.builder(
shrinkWrap: true,
physics: NeverScrollableScrollPhysics(),
itemCount: snapshot.data?.length,
itemBuilder: (BuildContext context, int index) {
return CommentComponent(comment: snapshot.data![index]);
},
),
)
: Container(),
],
);
} else {
return Container(
child: Center(
child: CupertinoActivityIndicator(),
),
);
}
},
),
],
),
),
],
),
widget.post.selfie != null
? Align(
alignment: Alignment.topRight,
child: ZoomTapAnimation(
onTap: () {
if (widget.post.selfie != null) {
switchChoice();
}
},
enableLongTapRepeatEvent: false,
longTapRepeatDuration: const Duration(milliseconds: 100),
begin: 1.0,
end: 0.96,
beginDuration: const Duration(milliseconds: 70),
endDuration: const Duration(milliseconds: 100),
beginCurve: Curves.decelerate,
endCurve: Curves.easeInOutSine,
child: Container(
margin: EdgeInsets.all(20),
width: 120,
height: 120,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
border: Border.all(width: 4, color: Colors.white),
),
child: ClipRRect(
borderRadius: BorderRadius.circular(15),
// implementer l'image
child: Image(
image: NetworkImage(choice ? widget.post.music.cover! : widget.post.selfie!),
fit: BoxFit.cover,
), ),
), ),
), ),
) ),
: Container(), )
], : Container(),
), ],
), ),
), ),
Align( ),
alignment: Alignment.topCenter, Align(
child: Container( alignment: Alignment.topCenter,
height: 50, child: Container(
width: double.infinity, height: 50,
color: Colors.transparent, width: double.infinity,
child: Align( color: Colors.transparent,
alignment: Alignment.topCenter, child: Align(
child: Container( alignment: Alignment.topCenter,
margin: EdgeInsets.only(top: 10), child: Container(
width: 60, margin: EdgeInsets.only(top: 10),
height: 5, width: 60,
decoration: BoxDecoration( height: 5,
color: Colors.white.withOpacity(0.6), decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20), color: Colors.white.withOpacity(0.6),
), borderRadius: BorderRadius.circular(20),
), ),
), ),
), ),
), ),
],
),
),
Padding(
padding: EdgeInsets.only(
bottom: MediaQuery.of(context).viewInsets.bottom),
child: Container(
height: 70,
width: double.infinity,
decoration: BoxDecoration(
border: Border(top: BorderSide(color: grayColor, width: 2)),
color: textFieldMessage,
), ),
child: Center( ],
child: Padding( ),
padding: const EdgeInsets.symmetric(horizontal: 20), ),
child: Row( Padding(
children: [ padding: EdgeInsets.only(bottom: MediaQuery.of(context).viewInsets.bottom),
ClipOval( child: Container(
child: SizedBox.fromSize( height: 70,
// Rayon de l'image width: double.infinity,
child: Image.network( decoration: BoxDecoration(
MyApp.userViewModel.userCurrent.pp, border: Border(top: BorderSide(color: grayColor, width: 2)),
width: 45, color: textFieldMessage,
), ),
child: Center(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 20),
child: Row(
children: [
ClipOval(
child: SizedBox.fromSize(
// Rayon de l'image
child: Image.network(
MyApp.userViewModel.userCurrent.pp,
width: 45,
), ),
), ),
SizedBox(width: 10), ),
Expanded( SizedBox(width: 10),
child: TextField( Expanded(
keyboardAppearance: Brightness.dark, child: TextField(
controller: _textController, keyboardAppearance: Brightness.dark,
focusNode: myFocusNode, controller: _textController,
onSubmitted: (value) async { focusNode: myFocusNode,
if (value.isNotEmpty) { onSubmitted: (value) async {
await MyApp.commentViewModel if (value.isNotEmpty) {
.addComment(value, widget.post.id); await MyApp.commentViewModel.addComment(value, widget.post.id);
} }
setState(() { setState(() {
_textController.clear(); _textController.clear();
}); });
}, },
cursorColor: primaryColor, cursorColor: primaryColor,
keyboardType: TextInputType.emailAddress, keyboardType: TextInputType.emailAddress,
style: GoogleFonts.plusJakartaSans( style: GoogleFonts.plusJakartaSans(color: Colors.white),
color: Colors.white), decoration: InputDecoration(
decoration: InputDecoration( suffixIcon: Icon(
suffixIcon: Icon( Icons.send,
Icons.send, color: grayText,
color: grayText, size: 20,
size: 20, ),
), focusedBorder: OutlineInputBorder(
focusedBorder: OutlineInputBorder( borderSide: BorderSide(width: 1, color: grayText),
borderSide: borderRadius: BorderRadius.all(Radius.circular(100)),
BorderSide(width: 1, color: grayText), ),
borderRadius: contentPadding: EdgeInsets.only(top: 0, bottom: 0, left: 20, right: 20),
BorderRadius.all(Radius.circular(100)), fillColor: bgModal,
), filled: true,
contentPadding: EdgeInsets.only( focusColor: Color.fromRGBO(255, 255, 255, 0.30),
top: 0, bottom: 0, left: 20, right: 20), enabledBorder: OutlineInputBorder(
fillColor: bgModal, borderSide: BorderSide(width: 1, color: grayText),
filled: true, borderRadius: BorderRadius.all(Radius.circular(100)),
focusColor: Color.fromRGBO(255, 255, 255, 0.30),
enabledBorder: OutlineInputBorder(
borderSide:
BorderSide(width: 1, color: grayText),
borderRadius:
BorderRadius.all(Radius.circular(100)),
),
hintText: 'Ajoutez une réponse...',
hintStyle:
GoogleFonts.plusJakartaSans(color: grayText),
), ),
hintText: 'Ajoutez une réponse...',
hintStyle: GoogleFonts.plusJakartaSans(color: grayText),
), ),
), ),
], ),
), ],
), ),
), ),
), ),
), ),
], ),
), ],
), ),
); );
} }

@ -1,273 +1,277 @@
import 'dart:async'; import 'dart:async';
import 'package:circular_reveal_animation/circular_reveal_animation.dart'; import 'package:circular_reveal_animation/circular_reveal_animation.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:google_fonts/google_fonts.dart'; import 'package:google_fonts/google_fonts.dart';
import 'package:justmusic/main.dart'; import 'package:justmusic/main.dart';
import 'package:justmusic/main.dart'; import 'package:tuple/tuple.dart';
import 'package:tuple/tuple.dart'; import '../components/post_component.dart';
import '../components/post_component.dart'; import '../components/top_nav_bar_component.dart';
import '../components/top_nav_bar_component.dart'; import '../model/Post.dart';
import '../model/Post.dart'; import '../values/constants.dart';
import '../values/constants.dart'; import 'detail_post_screen.dart';
import 'detail_post_screen.dart';
class FeedScreen extends StatefulWidget {
class FeedScreen extends StatefulWidget { const FeedScreen({Key? key}) : super(key: key);
const FeedScreen({Key? key}) : super(key: key);
@override
@override State<FeedScreen> createState() => _FeedScreenState();
State<FeedScreen> createState() => _FeedScreenState(); }
}
class _FeedScreenState extends State<FeedScreen> with SingleTickerProviderStateMixin {
class _FeedScreenState extends State<FeedScreen> late AnimationController animationController;
with SingleTickerProviderStateMixin { late Animation<double> animation;
late AnimationController animationController; late List<Post> friendFeed;
late Animation<double> animation; Timer? timer;
late List<Post> friendFeed;
Timer? timer; late List<Post> discoveryFeed;
late Tuple2<List<Post>, List<Post>> displayFeed;
late List<Post> discoveryFeed; bool isDismissed = true;
late List<Post> displayFeed; bool choiceFeed = true;
bool isDismissed = true; PageController controller = PageController();
bool choiceFeed = false;
@override
@override void initState() {
void initState() { super.initState();
super.initState(); friendFeed = MyApp.postViewModel.postsFriends;
friendFeed = MyApp.postViewModel.postsFriends; discoveryFeed = MyApp.postViewModel.bestPosts;
discoveryFeed = MyApp.postViewModel.bestPosts;
animationController = AnimationController( animationController = AnimationController(
vsync: this, vsync: this,
duration: Duration(milliseconds: 400), duration: Duration(milliseconds: 400),
); );
animation = CurvedAnimation( animation = CurvedAnimation(
parent: animationController, parent: animationController,
curve: Curves.easeInOutSine, curve: Curves.easeInOutSine,
); );
animationController.forward(); animationController.forward();
} _fetchData().then((tuple) {
friendFeed = tuple.item2;
Future _refresh() async { displayFeed = tuple.item1;
if (choiceFeed) { setState(() {});
await MyApp.postViewModel.getBestPosts(); });
setState(() {}); }
} else {
await MyApp.postViewModel.getPostsFriends(); @override
setState(() {}); void dispose() {
} animationController.dispose();
} super.dispose();
}
void changeFeed(bool choice) {
// Mettez ici le code pour l'action que vous souhaitez effectuer avec le paramètre Future<void> _refresh() async {
if (choice) { Tuple2<List<Post>, List<Post>> tuple = await _fetchData();
setState(() { displayFeed = Tuple2(tuple.item1, tuple.item2);
animationController.reset(); setState(() {});
displayFeed = MyApp.postViewModel.postsFriends.reversed.toList(); }
animationController.forward();
choiceFeed = false; void changeFeed(bool choice) {
}); setState(() {
} else { if (choice) {
setState(() { controller.nextPage(duration: Duration(milliseconds: 300), curve: Curves.linear);
animationController.reset(); } else {
displayFeed = MyApp.postViewModel.bestPosts.reversed.toList(); controller.previousPage(duration: Duration(milliseconds: 300), curve: Curves.linear);
animationController.forward(); }
choiceFeed = true; });
}); }
}
} void openDetailPost(Post post) {
showModalBottomSheet(
void openDetailPost(int index) { backgroundColor: bgModal,
showModalBottomSheet( elevation: 1,
backgroundColor: bgModal, constraints: const BoxConstraints(
elevation: 1, maxWidth: 600,
constraints: const BoxConstraints( ),
maxWidth: 600, isScrollControlled: true,
), context: context,
isScrollControlled: true, shape: const RoundedRectangleBorder(
context: context, borderRadius: BorderRadius.only(topLeft: Radius.circular(20), topRight: Radius.circular(20))),
shape: const RoundedRectangleBorder( builder: ((BuildContext context) {
borderRadius: BorderRadius.only( return ClipRRect(
topLeft: Radius.circular(20), topRight: Radius.circular(20))), borderRadius: BorderRadius.only(topLeft: Radius.circular(20), topRight: Radius.circular(20)),
builder: ((BuildContext context) { child: DetailPostScreen(post: post));
return ClipRRect( }),
borderRadius: BorderRadius.only( );
topLeft: Radius.circular(20), topRight: Radius.circular(20)), }
child: DetailPostScreen(post: displayFeed[index]));
}), _fetchData() async {
); friendFeed = await MyApp.postViewModel.getPostsFriends();
} discoveryFeed = await MyApp.postViewModel.getBestPosts();
return Tuple2(friendFeed, discoveryFeed);
_fetchData() async { }
friendFeed = await MyApp.postViewModel.getPostsFriends();
discoveryFeed = await MyApp.postViewModel.getBestPosts(); switchTopBar(int index) {
return Tuple2(friendFeed, displayFeed); if (index == 0) {
} setState(() {
choiceFeed = true;
@override });
Widget build(BuildContext context) { } else {
if (choiceFeed) { setState(() {
displayFeed = MyApp.postViewModel.postsFriends.reversed.toList(); choiceFeed = false;
} else { });
displayFeed = MyApp.postViewModel.bestPosts.reversed.toList(); }
} }
_fetchData();
@override
return Scaffold( Widget build(BuildContext context) {
resizeToAvoidBottomInset: true, displayFeed =
backgroundColor: bgColor, Tuple2(MyApp.postViewModel.postsFriends.reversed.toList(), MyApp.postViewModel.bestPosts.reversed.toList());
extendBodyBehindAppBar: true, bool empty =
body: displayFeed.isEmpty (choiceFeed == true && displayFeed.item1.isEmpty) || (choiceFeed == false && displayFeed.item2.isEmpty);
? Container( return Scaffold(
width: double.infinity, resizeToAvoidBottomInset: true,
child: Stack( backgroundColor: bgColor,
fit: StackFit.expand, extendBodyBehindAppBar: true,
children: [ body: Container(
Container( width: double.infinity,
decoration: const BoxDecoration( height: double.infinity,
image: DecorationImage( child: Stack(
image: AssetImage("assets/images/empty_bg.png"), fit: StackFit.expand,
fit: BoxFit.cover, children: [
opacity: 0.3), AnimatedOpacity(
), opacity: empty ? 1 : 0,
child: Padding( duration: const Duration(milliseconds: 300),
padding: curve: Curves.easeIn,
EdgeInsets.only(top: 140.h, left: defaultPadding), child: Container(
child: Column( decoration: const BoxDecoration(
crossAxisAlignment: CrossAxisAlignment.start, image:
children: [ DecorationImage(image: AssetImage("assets/images/empty_bg.png"), fit: BoxFit.cover, opacity: 0.3),
Text("Suis tes amis pour voir leurs capsules", ),
style: GoogleFonts.plusJakartaSans( child: Padding(
color: Colors.white, padding: EdgeInsets.only(top: 140.h, left: defaultPadding),
fontSize: 23, child: Column(
fontWeight: FontWeight.w800)) crossAxisAlignment: CrossAxisAlignment.start,
], children: [
), Text("Suis tes amis pour voir leurs capsules",
), style: GoogleFonts.plusJakartaSans(
), color: Colors.white, fontSize: 23, fontWeight: FontWeight.w800))
Align( ],
alignment: Alignment.topCenter, ),
child: IgnorePointer( ),
child: Container( ),
height: 240.h, ),
decoration: BoxDecoration( PageView(
gradient: LinearGradient( onPageChanged: (value) {
begin: Alignment.topRight, switchTopBar(value);
stops: [ },
0.3, controller: controller,
1 scrollBehavior: const ScrollBehavior().copyWith(overscroll: false),
], physics: AlwaysScrollableScrollPhysics(),
colors: [ scrollDirection: Axis.horizontal,
bgColor.withOpacity(0.9), children: [
bgColor.withOpacity(0) Align(
])), alignment: Alignment.topCenter,
), child: CircularRevealAnimation(
), animation: animation,
), centerOffset: Offset(30.w, -100),
Align( child: Container(
alignment: Alignment.topCenter, height: double.infinity,
child: ConstrainedBox( constraints: BoxConstraints(maxWidth: 600),
constraints: BoxConstraints(maxWidth: 800), padding: EdgeInsets.fromLTRB(defaultPadding, 100.h, defaultPadding, 0),
child: TopNavBarComponent(callback: changeFeed), child: RefreshIndicator(
), displacement: 20,
), triggerMode: RefreshIndicatorTriggerMode.onEdge,
], onRefresh: _refresh,
), child: ListView.builder(
) physics: const BouncingScrollPhysics(parent: AlwaysScrollableScrollPhysics()),
: Container( clipBehavior: Clip.none,
width: double.infinity, shrinkWrap: false,
height: double.infinity, itemCount: displayFeed.item1.length,
child: Stack( itemBuilder: (BuildContext context, int index) {
fit: StackFit.expand, return Padding(
children: [ padding: const EdgeInsets.only(bottom: 40),
Expanded( child:
child: Align( PostComponent(callback: openDetailPost, post: displayFeed.item1[index], index: index),
alignment: Alignment.topCenter, );
child: CircularRevealAnimation( },
animation: animation, ),
centerOffset: Offset(30.w, -100), ),
child: Expanded( ),
child: Container( ),
height: double.infinity, ),
constraints: BoxConstraints(maxWidth: 600), Align(
padding: EdgeInsets.fromLTRB( alignment: Alignment.topCenter,
defaultPadding, 100.h, defaultPadding, 0), child: CircularRevealAnimation(
child: Expanded( animation: animation,
child: FutureBuilder( centerOffset: Offset(30.w, -100),
future: _fetchData(), child: Container(
builder: (BuildContext context, height: double.infinity,
AsyncSnapshot<dynamic> snapshot) { constraints: BoxConstraints(maxWidth: 600),
if (snapshot.hasData) { padding: EdgeInsets.fromLTRB(defaultPadding, 100.h, defaultPadding, 0),
return RefreshIndicator( child: RefreshIndicator(
displacement: 20, displacement: 20,
triggerMode: triggerMode: RefreshIndicatorTriggerMode.onEdge,
RefreshIndicatorTriggerMode onRefresh: _refresh,
.onEdge, child: ListView.builder(
onRefresh: _refresh, physics: const BouncingScrollPhysics(parent: AlwaysScrollableScrollPhysics()),
child: Expanded( clipBehavior: Clip.none,
child: ListView.builder( shrinkWrap: false,
physics: itemCount: displayFeed.item2.length,
const AlwaysScrollableScrollPhysics(), itemBuilder: (BuildContext context, int index) {
clipBehavior: Clip.none, return Padding(
shrinkWrap: true, padding: const EdgeInsets.only(bottom: 40),
itemCount: displayFeed.length, child:
itemBuilder: PostComponent(callback: openDetailPost, post: displayFeed.item2[index], index: index),
(BuildContext context, );
int index) { },
return Padding( ),
padding: ),
const EdgeInsets.only( ),
bottom: 40), ),
child: PostComponent( ),
callback: openDetailPost, ],
post: displayFeed[index], ),
index: index), Align(
); alignment: Alignment.topCenter,
}, child: IgnorePointer(
), child: Container(
), height: 240.h,
); decoration: BoxDecoration(
} else { gradient: LinearGradient(
return Center( begin: Alignment.topRight,
child: CupertinoActivityIndicator(), stops: [0.3, 1],
); colors: [bgColor.withOpacity(0.9), bgColor.withOpacity(0)])),
} ),
}, ),
), ),
)), Align(
), alignment: Alignment.topCenter,
), child: ConstrainedBox(
), constraints: BoxConstraints(maxWidth: 800),
), child: TopNavBarComponent(callback: changeFeed, choice: choiceFeed),
Align( ),
alignment: Alignment.topCenter, ),
child: IgnorePointer( ],
child: Container( ),
height: 240.h, ),
decoration: BoxDecoration( );
gradient: LinearGradient( }
begin: Alignment.topRight, }
stops: [
0.3, class NoEdgeEffectScrollPhysics extends ScrollPhysics {
1 const NoEdgeEffectScrollPhysics({ScrollPhysics? parent}) : super(parent: parent);
],
colors: [ @override
bgColor.withOpacity(0.9), NoEdgeEffectScrollPhysics applyTo(ScrollPhysics? ancestor) {
bgColor.withOpacity(0) return NoEdgeEffectScrollPhysics(parent: buildParent(ancestor));
])), }
),
), @override
), double applyBoundaryConditions(ScrollMetrics position, double value) {
Align( // Supprimez l'effet de bord (effet de vague)
alignment: Alignment.topCenter, return 0.0;
child: ConstrainedBox( }
constraints: BoxConstraints(maxWidth: 800),
child: TopNavBarComponent(callback: changeFeed), @override
), double applyPhysicsToUserOffset(ScrollMetrics position, double offset) {
), // Supprimez la rétroaction haptique
], return offset;
), }
));
} @override
} Simulation? createBallisticSimulation(ScrollMetrics position, double velocity) {
// Désactivez l'overscroll
return super.createBallisticSimulation(position, 0.0);
}
}

Loading…
Cancel
Save