skip to Main Content

'String' is not a subtype of type 'YoutubePlayerController' – Flutter

Expanded( child: Container( child: SingleChildScrollView(scrollDirection: Axis.vertical, child: StreamBuilder( stream: FirebaseFirestore.instance.collection("videoList").snapshots(), builder: (context,AsyncSnapshot<QuerySnapshot>streamSnapshot){ if(streamSnapshot.hasData){ return ListView.separated( shrinkWrap: true, physics: ScrollPhysics(), scrollDirection: Axis.vertical, clipBehavior: Clip.hardEdge, itemBuilder: (context, index) { DocumentSnapshot _documentSnapshot=streamSnapshot.data!.docs[index]; return ListTile( title: YoutubePlayer( key: ObjectKey(_documentSnapshot["url"]), controller: _documentSnapshot["url"], actionsPadding: const EdgeInsets.only(left:…

VIEW QUESTION

Scroll Gridview like orbit in flutter

There is no Animated grid for Flutter So, what i am trying to achieve is scroll the gridview like orbit in flutter. Like below. Tried using TweenAnimationBuilder and flutter_staggered_animations: ^1.0.0 Package. But cannot able to achieve the expected result TweenAnimationBuilder…

VIEW QUESTION

Expansion Tile Flutter

I want when I click on one of the Expansion Tiles, the rest of the items are closed, how can I do that? Refer to below example code : import 'package:flutter/material.dart'; class PickPlanPage extends StatefulWidget { const PickPlanPage({Key? key}) :…

VIEW QUESTION
Back To Top
Search