skip to Main Content

How to play a Video in flutter using network link

I have a video link and I want to play video in flutter how can I play? I try using videoplayer plugin but its not work with this url - "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4" but I can play with this url why? "https://flutter.github.io/assets-for-api-docs/assets/videos/bee.mp4"

VIEW QUESTION

Flutter – How to refresh the data table after data appended

How to refresh the data table after data appended List results = []; DataRow _getDataRow(index, data) { return DataRow( cells: <DataCell>[ DataCell(Text(results[index]['item_code'])),//add name of your columns here DataCell(Text(results[index]['item_name'])), DataCell(Text(results[index]['rate'])), DataCell(Text("10")),//add name of your columns here DataCell(Text("here")), ], ); }

VIEW QUESTION
Back To Top
Search