Compare commits
41 Commits
UpdatingCa
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
54b4279f40 | ||
|
|
d06641ea62 | ||
|
|
9083aadffe | ||
|
|
3c5a8d9b4d | ||
|
|
9fb45ee409 | ||
|
|
27963dfc98 | ||
|
|
d4c4a7836c | ||
|
|
f5d4da9ccd | ||
|
|
68460c8b20 | ||
|
|
203bb03464 | ||
|
|
bd53761736 | ||
|
|
8d2477f3e7 | ||
|
|
52ef1c279a | ||
|
|
1e9a2cf908 | ||
|
|
2390b65922 | ||
|
|
83abdf1fa1 | ||
|
|
5a8ab5f5e5 | ||
|
|
fbd256847a | ||
|
|
330604f43e | ||
|
|
c2d376b2b5 | ||
|
|
0d95b66960 | ||
|
|
0c1158c27b | ||
|
|
465eb96f4b | ||
|
|
78049ba65f | ||
|
|
a2950f6997 | ||
|
|
7ae5c3a3bc | ||
|
|
f71bd6ad21 | ||
| 2209d1b992 | |||
| dd0456299c | |||
| 3e0efc8aff | |||
| a21b86bf78 | |||
|
|
b59f136ea0 | ||
| 79886504ae | |||
|
|
4d66b774fb | ||
|
|
b02efa9cc8 | ||
|
|
9fc67ee039 | ||
|
|
015fbd9dc9 | ||
|
|
18c8ed39f4 | ||
|
|
d8de898a5a | ||
|
|
fe3b69f350 | ||
|
|
3f87598680 |
BIN
assets/school_logos/UNC-Charlotte (1).png
Normal file
BIN
assets/school_logos/UNC-Charlotte (1).png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.9 KiB |
7
lib/globals.dart
Normal file
7
lib/globals.dart
Normal file
@@ -0,0 +1,7 @@
|
||||
library my_prj.globals;
|
||||
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
||||
|
||||
Client client = Client(
|
||||
'xqf4gbfwu2ec',
|
||||
logLevel: Level.INFO,
|
||||
);
|
||||
@@ -1,7 +1,16 @@
|
||||
import 'package:capstone_hungry_hippos/route_generator.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
||||
import 'globals.dart' as globals;
|
||||
|
||||
void main() => runApp(App());
|
||||
|
||||
void main() async {
|
||||
var c = globals.client;
|
||||
await c.setGuestUser(
|
||||
User(id: 'You'),
|
||||
);
|
||||
runApp(App());
|
||||
}
|
||||
|
||||
class App extends StatelessWidget {
|
||||
@override
|
||||
@@ -12,4 +21,4 @@ class App extends StatelessWidget {
|
||||
onGenerateRoute: RouteGenerator.generateRoute,
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
97
lib/models/game_cards.dart
Normal file
97
lib/models/game_cards.dart
Normal file
@@ -0,0 +1,97 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
import '../screens/sport_schedule.dart';
|
||||
import 'dart:convert';
|
||||
|
||||
class GameCardFeed{
|
||||
|
||||
static final sportUrl =
|
||||
'https://charlotte49ers.com/services/adaptive_components.ashx?type=scoreboard&start=0&count=80';
|
||||
Future<List<sport_schedule>> getEvents(int sportID) async {
|
||||
var url = '$sportUrl&sport_id=$sportID&name=&extra=%7B%7D';
|
||||
http.Response response = await http.get(url);
|
||||
Iterable games = json.decode(response.body);
|
||||
return games
|
||||
.map<sport_schedule>((json) => sport_schedule.fromJson(json))
|
||||
.toList();
|
||||
//return games.map((e) => sport_schedule.fromJson(e)).toList();
|
||||
}
|
||||
Future<List<ScheduleObject>> getGames(int sportID) async {
|
||||
Map<DateTime, List<sport_schedule>> mapGrab = {};
|
||||
|
||||
List<sport_schedule> eventInfo = await getEvents(sportID);
|
||||
|
||||
for (int i = 0; i < eventInfo.length; i++) {
|
||||
var sportEvent = DateTime(eventInfo[i].date.year, eventInfo[i].date.month,
|
||||
eventInfo[i].date.day);
|
||||
var original = mapGrab[sportEvent];
|
||||
|
||||
if (original == null) {
|
||||
//print("null");
|
||||
mapGrab[sportEvent] = [eventInfo[i]];
|
||||
} else {
|
||||
//print(eventInfo[i].date);
|
||||
mapGrab[sportEvent] = List.from(original)
|
||||
..addAll([eventInfo[i]]);
|
||||
}
|
||||
}
|
||||
List<ScheduleObject> list = [];
|
||||
mapGrab.forEach((k, v) => list.add(ScheduleObject(k, v)));
|
||||
return list;
|
||||
}
|
||||
}
|
||||
|
||||
class HorizontalGameCards extends StatelessWidget {
|
||||
final GameCardFeed gameCard;
|
||||
final double numCards;
|
||||
final int sportID;
|
||||
|
||||
const HorizontalGameCards({
|
||||
Key key,
|
||||
@required this.gameCard,
|
||||
this.numCards = 8,
|
||||
this.sportID,
|
||||
}) : super(key: key);
|
||||
|
||||
double heightIn(BuildContext context) {
|
||||
return MediaQuery.of(context).size.height / numCards;
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var card = gameCard.getGames(sportID);
|
||||
var events = [];
|
||||
return SizedBox(
|
||||
height: heightIn(context),
|
||||
child: FutureBuilder(
|
||||
future: card,
|
||||
// ignore: missing_return
|
||||
builder: (ctx, snapshot) {
|
||||
//print(snapshot);
|
||||
if (!snapshot.hasData) {
|
||||
return Center(child: CircularProgressIndicator());
|
||||
} else {
|
||||
events = snapshot.data;
|
||||
|
||||
return ListView.builder(
|
||||
scrollDirection: Axis.horizontal,
|
||||
itemCount: events.length,
|
||||
itemBuilder: (context, index) {
|
||||
return GameCard(
|
||||
gameCard: events[index].sportSched[0],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
},
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class ScheduleObject {
|
||||
DateTime d;
|
||||
List<sport_schedule> sportSched;
|
||||
ScheduleObject(this.d, this.sportSched);
|
||||
}
|
||||
255
lib/models/game_details.dart
Normal file
255
lib/models/game_details.dart
Normal file
@@ -0,0 +1,255 @@
|
||||
import 'package:capstone_hungry_hippos/screens/sport_schedule.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
|
||||
//This will mode to Kalebs
|
||||
class GameDetailsWidget extends StatelessWidget {
|
||||
final sport_schedule gameCard;
|
||||
|
||||
const GameDetailsWidget(this.gameCard);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("VS. ${gameCard.opponentTitle}"),
|
||||
),
|
||||
body: Column(
|
||||
children: <Widget>[
|
||||
GameDetailsHeader(gameCard),
|
||||
EasyAccess(gameCard),
|
||||
GameUpdates()
|
||||
],
|
||||
)
|
||||
);
|
||||
}
|
||||
} //Move to Kalebs ^^^^
|
||||
|
||||
class GameDetailsHeader extends StatelessWidget {
|
||||
final sport_schedule gameCard;
|
||||
|
||||
const GameDetailsHeader(
|
||||
this.gameCard,
|
||||
);
|
||||
|
||||
Text _pastGameScore(
|
||||
String homeAway, String winLoss, String uncc, String opponent) {
|
||||
double fontsize = 25;
|
||||
if (homeAway == "H" || homeAway == "T") {
|
||||
return (Text('$uncc - $opponent',style: TextStyle(fontSize: fontsize)));
|
||||
} else {
|
||||
return (Text('$opponent - $uncc',style: TextStyle(fontSize: fontsize)));
|
||||
}
|
||||
}
|
||||
|
||||
Image _homeAwayImageOrder(
|
||||
String h, String opposingTeam, bool l, BuildContext ctx) {
|
||||
if ((h == "H") == l) {
|
||||
return (Image.network(
|
||||
'https://fiusports.com/images/logos/UNC-Charlotte.png?width=80&height=80&mode=max',
|
||||
));
|
||||
} else {
|
||||
return (Image.network(
|
||||
'https://charlotte49ers.com' + opposingTeam,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var _months = {
|
||||
1: 'JAN',
|
||||
2: 'FEB',
|
||||
3: 'MAR',
|
||||
4: 'APR',
|
||||
5: 'MAY',
|
||||
6: 'JUN',
|
||||
7: 'JUL',
|
||||
8: 'AUG',
|
||||
9: 'SEP',
|
||||
10: 'OCT',
|
||||
11: 'NOV',
|
||||
12: 'DEC'
|
||||
};
|
||||
var size = MediaQuery.of(context).size;
|
||||
return SizedBox(
|
||||
height: size.height / 7,
|
||||
child: Container(
|
||||
color: Colors.black26,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
mainAxisSize: MainAxisSize.min,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: _homeAwayImageOrder(
|
||||
gameCard.location_indicator,
|
||||
gameCard.image,
|
||||
true, context),
|
||||
),
|
||||
Container(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Wrap(
|
||||
children: <Widget>[
|
||||
if (gameCard.status == null) // no game yet
|
||||
Text(
|
||||
'${_months[gameCard.date.month]} ${gameCard.date.day}',
|
||||
style: TextStyle(fontSize: 25),
|
||||
)
|
||||
else
|
||||
_pastGameScore(
|
||||
gameCard.location_indicator,
|
||||
gameCard.status,
|
||||
gameCard.team_score,
|
||||
gameCard.opponent_score,),
|
||||
],
|
||||
),
|
||||
Wrap(
|
||||
children: <Widget>[
|
||||
if (gameCard.status != null) // no game yet
|
||||
Text(
|
||||
'${_months[gameCard.date.month]} ${gameCard.date.day}', textAlign: TextAlign.center,
|
||||
)
|
||||
else
|
||||
Text('${gameCard.date.hour}:${gameCard.date.minute} PM'),
|
||||
],
|
||||
)
|
||||
]
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: _homeAwayImageOrder(
|
||||
gameCard.location_indicator,
|
||||
gameCard.image,
|
||||
false, context),
|
||||
)
|
||||
],
|
||||
),
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class EasyAccess extends StatelessWidget {
|
||||
final sport_schedule gameCard;
|
||||
|
||||
const EasyAccess(
|
||||
this.gameCard,
|
||||
);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var size = MediaQuery.of(context).size;
|
||||
|
||||
return SizedBox(
|
||||
height: size.height / 15,
|
||||
child: Container(
|
||||
//color: Colors.black12,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: <Widget>[
|
||||
_button(context, "Play-by-Play"),
|
||||
_button(context, "Chat")
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget _button(BuildContext context, String label) {
|
||||
var size = MediaQuery.of(context).size;
|
||||
label = (label == "Standings") ? "Standing" : label;
|
||||
print(label);
|
||||
return InkWell(
|
||||
splashColor: Colors.green,
|
||||
child: Container(
|
||||
width: size.width/2,
|
||||
height: size.height / 15,
|
||||
color: label == 'Play-by-Play' ? Colors.green : Colors.black12,
|
||||
child: Center(
|
||||
child: Text(label, style: TextStyle(fontSize: 16),),
|
||||
),
|
||||
),
|
||||
onTap: () => {
|
||||
print("Tapped $label"),
|
||||
if(label == 'Chat'){
|
||||
Navigator.pushNamed(context, '/Chat', arguments: [gameCard.sportTitle, gameCard.idSport])
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
//Class for pbp
|
||||
class GameUpdates extends StatelessWidget{
|
||||
List<Play> myList = [];
|
||||
final test1 = new Play('1st and 10 at CLT 25', '(6:12 - 4th) Aidan Swanson kickoff for 65 yds for a touchback');
|
||||
final test2 = new Play('2nd & 10 at CLT 25', '(5:00 - 4th) Ishod Finger run for no gain to the Charl 25');
|
||||
final test3 = new Play('3rd & 10 at CLT 25', '(4:30 - 4th) CHARLOTTE Penalty, False Start (-5 Yards) to the Charl 20');
|
||||
final test4 = new Play('3rd & 15 at CLT 20', '(4:00 - 4th) Brett Kean run for 5 yds to the Charl 25');
|
||||
final test5 = new Play('4th & 10 at CLT 25', '(3:31 - 4th) Connor Bowler punt for 48 yds , Will Brown returns for 13 yds to the Clem 40');
|
||||
final test6 = new Play('1st & 10 at CLEM 40','(3:00 - 4th) Taisun Phommachanh pass complete to Will Brown for 8 yds to the Clem 48');
|
||||
final test7 = new Play('2nd & 2 at CLEM 48','(2:40 - 4th) Chez Mellusi run for 3 yds to the Charl 49 for a 1ST down');
|
||||
final test8 = new Play('1st & 10 at CLT 49','(2:25 - 4th) Chez Mellusi run for 8 yds to the Charl 41');
|
||||
final test9 = new Play('2nd & 2 at CLT 41','(1:37 - 4th) Ben Batson run for 5 yds to the Charl 36 for a 1ST down');
|
||||
final test10 = new Play('1st & 10 at CLT 36', '(1:30 - 4th) CLEMSON Penalty, False Start (-5 Yards) to the Charl 41');
|
||||
final test11 = new Play('1st & 15 at CLT 41','(0:55 - 4th) Chez Mellusi run for 4 yds to the Charl 37');
|
||||
final test12 = new Play('2nd & 11 at CLT 37','(0:25 - 4th) Patrick McClure run for 3 yds to the Charl 34');
|
||||
final test13 = new Play('3rd & 8 at CLT 34','(0:05 - 4th) Chez Mellusi run for 7 yds to the Charl 27');
|
||||
final test14 = new Play('4th & 1 at CLT 27','(0:00 - 4th) Patrick McClure run for 9 yds to the Charl 18 for a 1ST down');
|
||||
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
myList.add(test1);
|
||||
myList.add(test2);
|
||||
myList.add(test3);
|
||||
myList.add(test4);
|
||||
myList.add(test5);
|
||||
myList.add(test6);
|
||||
myList.add(test7);
|
||||
myList.add(test8);
|
||||
myList.add(test9);
|
||||
myList.add(test10);
|
||||
myList.add(test11);
|
||||
myList.add(test12);
|
||||
myList.add(test13);
|
||||
myList.add(test14);
|
||||
|
||||
return Expanded(
|
||||
child: Container(
|
||||
child: ListView.builder(
|
||||
scrollDirection: Axis.vertical,
|
||||
itemCount: myList.length,
|
||||
itemBuilder: (context, int index){
|
||||
return Card(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 5,horizontal: 10),
|
||||
child: ListTile(
|
||||
title: Text('${myList[index].title}'),
|
||||
subtitle: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 10, horizontal: 20),
|
||||
child: Text('${myList[index].action}'),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
}
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class Play {
|
||||
final String title;
|
||||
final String action;
|
||||
|
||||
Play(
|
||||
this.title,
|
||||
this.action,
|
||||
);
|
||||
}
|
||||
@@ -20,7 +20,7 @@ Map<DateTime, List<sport_schedule>> _events;
|
||||
|
||||
class _Calendar extends State<Calendar> with TickerProviderStateMixin {
|
||||
int sportID;
|
||||
_Calendar(this. sportID);
|
||||
_Calendar(this.sportID);
|
||||
|
||||
AnimationController _animationController;
|
||||
CalendarController _calController;
|
||||
|
||||
@@ -90,3 +90,59 @@ class ArticleCard extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class ArticleCardVert extends StatelessWidget {
|
||||
const ArticleCardVert({
|
||||
Key key,
|
||||
@required this.article,
|
||||
this.numCards = 2.1,
|
||||
}) : super(key: key);
|
||||
|
||||
final Article article;
|
||||
final double numCards;
|
||||
|
||||
double heightIn(BuildContext context) {
|
||||
return (MediaQuery.of(context).size.height * 7/8) / numCards;
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var decoration = BoxDecoration(
|
||||
image: DecorationImage(
|
||||
image: NetworkImage(
|
||||
article.thumbUrl,
|
||||
),
|
||||
fit: BoxFit.cover,
|
||||
),
|
||||
);
|
||||
|
||||
var body = Column(
|
||||
verticalDirection: VerticalDirection.up,
|
||||
children: <Widget>[
|
||||
Container(
|
||||
color: Colors.white,
|
||||
child: ListTile(
|
||||
title: Text(
|
||||
article.mediumHeadline,
|
||||
overflow: TextOverflow.ellipsis,
|
||||
maxLines: 2,
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
|
||||
|
||||
return SizedBox(
|
||||
height: heightIn(context),
|
||||
child: Card(
|
||||
semanticContainer: true,
|
||||
clipBehavior: Clip.antiAliasWithSaveLayer,
|
||||
child: Container(
|
||||
decoration: decoration,
|
||||
child: body,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,11 +20,13 @@ class HorizontalNewsFeed extends StatelessWidget {
|
||||
final Feed newsFeed;
|
||||
final Text title;
|
||||
final double numCards;
|
||||
final String sportFilter;
|
||||
|
||||
const HorizontalNewsFeed({
|
||||
Key key,
|
||||
@required this.newsFeed,
|
||||
@required this.title,
|
||||
@required this.sportFilter,
|
||||
this.numCards = 3.25,
|
||||
}) : super(key: key);
|
||||
|
||||
@@ -33,7 +35,8 @@ class HorizontalNewsFeed extends StatelessWidget {
|
||||
}
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
//print(title.data);
|
||||
var page = newsFeed.getPage(1, size: 100).then((page) => page.where((article) => article.sport.toLowerCase().contains(sportFilter.toLowerCase())).toList());
|
||||
|
||||
return SizedBox(
|
||||
height: heightIn(context),
|
||||
child: Column(
|
||||
@@ -45,7 +48,6 @@ class HorizontalNewsFeed extends StatelessWidget {
|
||||
icon: Icon(Icons.navigate_next),
|
||||
onPressed: () => Navigator.of(context).pushNamed('/Sport', arguments: title.data),
|
||||
|
||||
|
||||
/*onPressed: () { //changed
|
||||
Navigator.of(context).pushNamed('/Sport');
|
||||
print(Navigator.of(context).pushNamed('/Sport'));
|
||||
@@ -55,13 +57,14 @@ class HorizontalNewsFeed extends StatelessWidget {
|
||||
),
|
||||
Expanded(
|
||||
child: FutureBuilder(
|
||||
future: newsFeed.getPage(1),
|
||||
future: page,
|
||||
builder: (ctx, snapshot) {
|
||||
if (!snapshot.hasData) {
|
||||
return Center(child: CircularProgressIndicator());
|
||||
} else {
|
||||
List<Article> articles = snapshot.data;
|
||||
return ListView.builder(
|
||||
//shrinkWrap: true,
|
||||
scrollDirection: Axis.horizontal,
|
||||
itemCount: articles.length,
|
||||
itemBuilder: (ctx, idx) {
|
||||
@@ -79,3 +82,43 @@ class HorizontalNewsFeed extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class VerticalNewsFeed extends StatelessWidget {
|
||||
final Feed newsFeed;
|
||||
final String sportFilter;
|
||||
|
||||
const VerticalNewsFeed({
|
||||
Key key,
|
||||
@required this.newsFeed,
|
||||
@required this.sportFilter,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var page = newsFeed.getPage(1, size: 100).then((page) => page.where((article) => article.sport.toLowerCase().contains(sportFilter.toLowerCase())).toList());
|
||||
var size = MediaQuery.of(context).size;
|
||||
return SizedBox(
|
||||
height: size.height * (7/8),
|
||||
child: FutureBuilder(
|
||||
future: page,
|
||||
builder: (ctx, snapshot) {
|
||||
if (!snapshot.hasData) {
|
||||
return Center(child: CircularProgressIndicator());
|
||||
} else {
|
||||
List<Article> articles = snapshot.data;
|
||||
return ListView.builder(
|
||||
//shrinkWrap: true,
|
||||
scrollDirection: Axis.vertical,
|
||||
itemCount: articles.length,
|
||||
itemBuilder: (ctx, idx) {
|
||||
return ArticleCardVert(
|
||||
article: articles[idx],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
},
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import 'package:capstone_hungry_hippos/screens/chat.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/schedule.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/standing.dart';
|
||||
import 'models/game_details.dart';
|
||||
import 'screens/chat.dart';
|
||||
import 'screens/schedule.dart';
|
||||
import 'screens/standing.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/home_widget.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/sport.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/twitter_widget.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/favorites_reorder.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/game_details.dart';
|
||||
import 'screens/home_widget.dart';
|
||||
import 'screens/sport.dart';
|
||||
import 'screens/twitter_widget.dart';
|
||||
import 'screens/favorites_reorder.dart';
|
||||
|
||||
class RouteGenerator {
|
||||
static Route<dynamic> generateRoute(RouteSettings settings) {
|
||||
@@ -22,11 +22,11 @@ class RouteGenerator {
|
||||
case '/Schedule':
|
||||
return MaterialPageRoute(builder: (_) => Schedule(args));
|
||||
case '/Standing':
|
||||
return MaterialPageRoute(builder: (_) => Standing());
|
||||
return MaterialPageRoute(builder: (_) => Standing(args));
|
||||
case '/Chat':
|
||||
return MaterialPageRoute(builder: (_) => Chat());
|
||||
return MaterialPageRoute(builder: (_) => Chat(args));
|
||||
case '/Details':
|
||||
return MaterialPageRoute(builder: (_) => Details());
|
||||
return MaterialPageRoute(builder: (_) => GameDetailsWidget(args));
|
||||
case '/Favorites':
|
||||
return MaterialPageRoute(builder: (_) => FavoritesManager());
|
||||
case '/Twitter':
|
||||
@@ -35,7 +35,6 @@ class RouteGenerator {
|
||||
return _errorRoute();
|
||||
}
|
||||
}
|
||||
|
||||
static Route _errorRoute() {
|
||||
return MaterialPageRoute(builder: (_) {
|
||||
return Scaffold(
|
||||
@@ -60,4 +59,5 @@ class RouteGenerator {
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,40 +1,65 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:stream_chat_flutter/stream_chat_flutter.dart';
|
||||
import 'package:capstone_hungry_hippos/globals.dart' as globals;
|
||||
|
||||
class Chat extends StatelessWidget {
|
||||
final List sport;
|
||||
Chat(this.sport);
|
||||
|
||||
class Chat extends StatelessWidget{
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return StatefulBuilder(
|
||||
builder: (context, StateSetter setState) => Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: Text("49ers"),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
body: Text("Chat Goes Here"),
|
||||
drawer: Drawer(
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
DrawerHeader(
|
||||
child: Text(
|
||||
'Drawer Header',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 24,
|
||||
),
|
||||
),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.green,
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.home),
|
||||
onPressed: () => Navigator.pushNamed(context, '/'),
|
||||
),
|
||||
),
|
||||
],
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: Text('${sport[0]} Chat'),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
)
|
||||
));
|
||||
body: ContainerWithInterceptor(globals.client, sport[1]),
|
||||
);
|
||||
}
|
||||
}
|
||||
class ChannelPage extends StatelessWidget {
|
||||
const ChannelPage({
|
||||
Key key,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: MessageListView(
|
||||
//messageBuilder: _messageBuilder,
|
||||
),
|
||||
),
|
||||
MessageInput(),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class ContainerWithInterceptor extends StatefulWidget {
|
||||
final Client client;
|
||||
final int sport;
|
||||
ContainerWithInterceptor(this.client, this.sport);
|
||||
|
||||
@override
|
||||
State createState() => _ContainerWithInterceptorState();
|
||||
}
|
||||
|
||||
class _ContainerWithInterceptorState extends State<ContainerWithInterceptor> {
|
||||
|
||||
Widget build(BuildContext context) {
|
||||
var cc = widget.client.channel("messaging", id: "${widget.sport}");
|
||||
print(widget.sport);
|
||||
print("-------------------------------------------------------------");
|
||||
cc.watch();
|
||||
return StreamChat(
|
||||
client: widget.client,
|
||||
child: StreamChannel(
|
||||
channel: cc,
|
||||
child: ChannelPage(),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,7 +10,6 @@ class Favorites {
|
||||
'Basketball',
|
||||
'Baseball',
|
||||
'Soccer',
|
||||
'Tennis',
|
||||
'Volleyball'
|
||||
];
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'dart:io';
|
||||
|
||||
class Details extends StatelessWidget {
|
||||
|
||||
@@ -11,13 +10,8 @@ class Details extends StatelessWidget {
|
||||
const Item('Baseball', Colors.orange),
|
||||
];
|
||||
|
||||
Item _curSport = colorList[0];
|
||||
|
||||
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
Item selectedSport;
|
||||
|
||||
return StatefulBuilder(
|
||||
builder: (context, StateSetter setState) => Scaffold(
|
||||
@@ -128,26 +122,32 @@ class Details extends StatelessWidget {
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Container(
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 90,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Standings',
|
||||
style: TextStyle(fontSize: 16),
|
||||
child: GestureDetector(
|
||||
onTap: () => Navigator.pushNamed(context, '/Standing'),
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 90,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Standings',
|
||||
style: TextStyle(fontSize: 16),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 90,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Schedule',
|
||||
style: TextStyle(fontSize: 16),
|
||||
child: GestureDetector(
|
||||
onTap: () => Navigator.pushNamed(context, '/Schedule'),
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 90,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Schedule',
|
||||
style: TextStyle(fontSize: 16),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -171,13 +171,16 @@ class Details extends StatelessWidget {
|
||||
),
|
||||
Container(
|
||||
color: Colors.black12,
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 50,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Chat',
|
||||
style: TextStyle(fontSize: 16),
|
||||
child: GestureDetector(
|
||||
onTap: () => Navigator.pushNamed(context, '/Chat'),
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 50,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Chat',
|
||||
style: TextStyle(fontSize: 16),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
@@ -255,7 +258,6 @@ class Play {
|
||||
}
|
||||
|
||||
class GameUpdates extends StatelessWidget{
|
||||
List<Play> myList = [];
|
||||
final test1 = new Play('1st and 10 at CLT 25', '(6:12 - 4th) Aidan Swanson kickoff for 65 yds for a touchback');
|
||||
final test2 = new Play('2nd & 10 at CLT 25', '(5:00 - 4th) Ishod Finger run for no gain to the Charl 25');
|
||||
final test3 = new Play('3rd & 10 at CLT 25', '(4:30 - 4th) CHARLOTTE Penalty, False Start (-5 Yards) to the Charl 20');
|
||||
@@ -274,7 +276,7 @@ class GameUpdates extends StatelessWidget{
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var myStream = Stream<int>.periodic(Duration(seconds:5), (x) => x).take(15);
|
||||
List<Play> myList = [];
|
||||
myList.add(test1);
|
||||
myList.add(test2);
|
||||
myList.add(test3);
|
||||
|
||||
@@ -42,19 +42,7 @@ class _HomeState extends State<Home> {
|
||||
color: Colors.green,
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.message),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Chat'),
|
||||
),
|
||||
),
|
||||
ListTile( //added by Kaleb to test details page. Will update path / delete when we have game tiles implemented.
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.book),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Details'),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.voice_chat),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Twitter'),
|
||||
@@ -96,6 +84,7 @@ Future<List<HorizontalNewsFeed>> _buildList() async {
|
||||
return HorizontalNewsFeed(
|
||||
newsFeed: feed,
|
||||
title: Text(sport),
|
||||
sportFilter: sport,
|
||||
);
|
||||
}).toList();
|
||||
}
|
||||
|
||||
@@ -1,23 +1,24 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import '../news/feed.dart';
|
||||
import '../models/game_cards.dart';
|
||||
|
||||
class Sport extends StatelessWidget {
|
||||
|
||||
static final List<Item> colorList = <Item>[
|
||||
const Item('Football', Colors.green,[3]),
|
||||
const Item("Basketball", Colors.red,[5,13]),
|
||||
const Item("Soccer", Colors.pinkAccent,[9,17]),
|
||||
const Item('Baseball', Colors.orange,[1]),
|
||||
const Item('Softball', Colors.yellow,[12]),
|
||||
const Item('Volleyball', Colors.blue,[20]),
|
||||
const Item('Tennis', Colors.yellowAccent,[10,18]),
|
||||
const Item('Football',[3]),
|
||||
const Item("Basketball",[5,13]),
|
||||
const Item("Soccer",[9,17]),
|
||||
const Item('Baseball',[1]),
|
||||
const Item('Softball',[12]),
|
||||
const Item('Volleyball',[20]),
|
||||
const Item('Tennis',[10,18]),
|
||||
];
|
||||
|
||||
final feed = Feed(); // was var not final
|
||||
final gameCard = GameCardFeed();
|
||||
|
||||
bool genderSportSwitch = false; //determines if sport needs the gender switch
|
||||
final String imageMale = 'images/male.png';
|
||||
final String imageFemale = 'images/female.png';
|
||||
static bool genderSportSwitch = false; //determines if sport needs the gender switch
|
||||
static bool genderSport = false; //determines which gender switch is set M - false / F - True
|
||||
static int sport_ID;
|
||||
final String sport;
|
||||
@@ -44,9 +45,9 @@ class Sport extends StatelessWidget {
|
||||
return StatefulBuilder(
|
||||
builder: (context, StateSetter setState) => Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: buildDropdownButton(selectedSport, setState),
|
||||
backgroundColor: _curSport.color,
|
||||
centerTitle: false,
|
||||
title: buildDropdownButton(selectedSport, setState),
|
||||
backgroundColor: Colors.green,
|
||||
|
||||
//--Gender Switch-- Need to make condition to determine gender
|
||||
actions: <Widget>[
|
||||
@@ -55,8 +56,8 @@ class Sport extends StatelessWidget {
|
||||
value: genderSport,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
genderSport = value;
|
||||
_genderSwitcherCheck();
|
||||
genderSport = value;
|
||||
_genderSwitcherCheck();
|
||||
});
|
||||
},
|
||||
inactiveThumbColor: Colors.lightBlue,
|
||||
@@ -67,14 +68,7 @@ class Sport extends StatelessWidget {
|
||||
),
|
||||
]
|
||||
),
|
||||
body: ListView(
|
||||
children: <Widget>[
|
||||
HorizontalNewsFeed(newsFeed: feed, title: Text(_curSport.name)),
|
||||
HorizontalNewsFeed(newsFeed: feed, title: Text(_curSport.name)),
|
||||
HorizontalNewsFeed(newsFeed: feed, title: Text(_curSport.name)),
|
||||
HorizontalNewsFeed(newsFeed: feed, title: Text(_curSport.name)),
|
||||
],
|
||||
),
|
||||
body: bodyBuilder(),
|
||||
drawer: Drawer(
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
@@ -99,7 +93,7 @@ class Sport extends StatelessWidget {
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.table_chart),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Standing', arguments: sport_ID),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Standing', arguments: [sport_ID, _curSport.name]),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
@@ -108,6 +102,12 @@ class Sport extends StatelessWidget {
|
||||
onPressed: () => Navigator.pushNamed(context, '/Schedule',arguments: [sport_ID, _curSport.name],),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.message),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Chat',arguments: [_curSport.name,sport_ID]),
|
||||
),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
@@ -115,6 +115,18 @@ class Sport extends StatelessWidget {
|
||||
);
|
||||
}
|
||||
|
||||
Widget bodyBuilder() {
|
||||
return Column(
|
||||
children: <Widget>[
|
||||
HorizontalGameCards(gameCard: gameCard, sportID: sport_ID,),
|
||||
Expanded(
|
||||
child: VerticalNewsFeed(newsFeed: feed, sportFilter: _curSport.name),
|
||||
),
|
||||
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
DropdownButtonHideUnderline buildDropdownButton(Item selectedSport, StateSetter setState) {
|
||||
return DropdownButtonHideUnderline(
|
||||
child: DropdownButton<Item>(
|
||||
@@ -132,7 +144,7 @@ class Sport extends StatelessWidget {
|
||||
setState(() {
|
||||
_curSport = value;
|
||||
_genderSwitcherCheck();
|
||||
print(sport_ID);
|
||||
//print(sport_ID);
|
||||
});
|
||||
},
|
||||
items: colorList.map<DropdownMenuItem<Item>>((Item item) {
|
||||
@@ -156,16 +168,12 @@ class Sport extends StatelessWidget {
|
||||
genderSportSwitch = false;
|
||||
sport_ID = _curSport.sportID[0];
|
||||
}
|
||||
print(sport_ID);
|
||||
//print(sport_ID);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
class Item {
|
||||
const Item(this.name, this.color, this.sportID);
|
||||
|
||||
const Item(this.name, this.sportID);
|
||||
final String name;
|
||||
final Color color;
|
||||
final List<int> sportID;
|
||||
}
|
||||
@@ -62,3 +62,145 @@ class sport_schedule {
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class GameCard extends StatelessWidget {
|
||||
const GameCard({
|
||||
Key key,
|
||||
@required this.gameCard,
|
||||
this.numCards = 2.25,
|
||||
}) : super(key: key);
|
||||
|
||||
final sport_schedule gameCard;
|
||||
final double numCards;
|
||||
|
||||
double widthIn(BuildContext context) {
|
||||
return MediaQuery.of(context).size.width / numCards;
|
||||
}
|
||||
|
||||
Text _pastGameScore(
|
||||
String homeAway, String winLoss, String uncc, String opponent) {
|
||||
if (homeAway == "H" || homeAway == "T") {
|
||||
return (Text('$uncc - $opponent'));
|
||||
} else {
|
||||
return (Text('$opponent - $uncc'));
|
||||
}
|
||||
}
|
||||
|
||||
Image _homeAwayImageOrder(String h, String opposingTeam, bool l, BuildContext ctx) {
|
||||
if ((h == "H") == l) {
|
||||
return (Image.network(
|
||||
'https://fiusports.com/images/logos/UNC-Charlotte.png?width=80&height=80&mode=max',
|
||||
));
|
||||
} else {
|
||||
return (Image.network(
|
||||
'https://charlotte49ers.com' + opposingTeam,
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
Color winLoss(String wl){
|
||||
if (wl == "W") {
|
||||
return Colors.green;
|
||||
} else if (wl == "L") {
|
||||
return Colors.red;
|
||||
} else {
|
||||
return Colors.grey;
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext ctx) {
|
||||
var _months = {
|
||||
1: 'JAN',
|
||||
2: 'FEB',
|
||||
3: 'MAR',
|
||||
4: 'APR',
|
||||
5: 'MAY',
|
||||
6: 'JUN',
|
||||
7: 'JUL',
|
||||
8: 'AUG',
|
||||
9: 'SEP',
|
||||
10: 'OCT',
|
||||
11: 'NOV',
|
||||
12: 'DEC'
|
||||
};
|
||||
var decoration = BoxDecoration(
|
||||
border: Border.all(
|
||||
color: winLoss(gameCard.status), //UNCC Green
|
||||
width: 1.2,
|
||||
),
|
||||
borderRadius: BorderRadius.circular(2),
|
||||
);
|
||||
var logoWidth = 4.5;
|
||||
return SizedBox(
|
||||
width: widthIn(ctx),
|
||||
child: Card(
|
||||
semanticContainer: true,
|
||||
clipBehavior: Clip.antiAliasWithSaveLayer,
|
||||
child: Container(
|
||||
decoration: decoration,
|
||||
child: buildCard(ctx, logoWidth, _months),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Widget buildCard(BuildContext ctx, double logoWidth, Map<int, String> _months) {
|
||||
|
||||
return InkWell(
|
||||
splashColor: Colors.green,
|
||||
child: Container(
|
||||
color: Colors.black12,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: <Widget>[
|
||||
Expanded(
|
||||
child: _homeAwayImageOrder(
|
||||
gameCard.location_indicator,
|
||||
gameCard.image,
|
||||
true, ctx),
|
||||
),
|
||||
Container(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Wrap(
|
||||
children: <Widget>[
|
||||
if (gameCard.status == null) // no game yet
|
||||
Text(
|
||||
'${_months[gameCard.date.month]} ${gameCard.date.day}'
|
||||
)
|
||||
else
|
||||
_pastGameScore(
|
||||
gameCard.location_indicator,
|
||||
gameCard.status,
|
||||
gameCard.team_score,
|
||||
gameCard.opponent_score,),
|
||||
],
|
||||
),
|
||||
Wrap(
|
||||
children: <Widget>[
|
||||
if (gameCard.status != null) // no game yet
|
||||
Text(
|
||||
'${_months[gameCard.date.month]} ${gameCard.date.day}', textAlign: TextAlign.center,
|
||||
)
|
||||
else
|
||||
Text('${gameCard.date.hour}:${gameCard.date.minute} PM'),
|
||||
],
|
||||
)
|
||||
]
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: _homeAwayImageOrder(
|
||||
gameCard.location_indicator,
|
||||
gameCard.image,
|
||||
false, ctx),
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
onTap: () => Navigator.pushNamed(ctx, '/Details', arguments: gameCard),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,171 +1,54 @@
|
||||
import 'package:capstone_hungry_hippos/models/School.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../team_standings.dart';
|
||||
|
||||
class Standing extends StatelessWidget {
|
||||
final _schools = [
|
||||
School("North Texas Mean Green",AssetImage('assets/school_logos/NorthTexas.png'), 14, 4),
|
||||
School("Louisiana Tech Bulldogs",AssetImage('assets/school_logos/LT.png'), 13, 5),
|
||||
School("Western Kentucky Hilltoppers",AssetImage('assets/school_logos/wku.png'), 13, 5),
|
||||
School("Charlotte 49ers",AssetImage('assets/school_logos/uncc.png'), 10, 8),
|
||||
School("Marshall Thundering Herd",AssetImage('assets/school_logos/Marshall.png'), 10, 8),
|
||||
School("Florida Int'L Panthers",AssetImage('assets/school_logos/FIU.png'), 9, 9),
|
||||
School("UAB Blazers",AssetImage('assets/school_logos/UAB.png'), 9, 9),
|
||||
School("Old Dominion Monarchs",AssetImage('assets/school_logos/ODU.png'), 9, 9),
|
||||
School("Florida Atlantic Owl",AssetImage('assets/school_logos/FAU.png'), 8, 10),
|
||||
School("UTEP Miners",AssetImage('assets/school_logos/UTEP.png'), 8, 10),
|
||||
School("UTSA Roadrunners",AssetImage('assets/school_logos/UTSA.png'), 7, 11),
|
||||
School("Rice Owls",AssetImage('assets/school_logos/RiceOwls.png'), 7, 11),
|
||||
School("Southern Miss Golden Eagles",AssetImage('assets/school_logos/SouthernMiss.png'), 5, 13),
|
||||
School("Middle Tennessee Blue Raiders",AssetImage('assets/school_logos/MT.png'), 4, 14),
|
||||
];
|
||||
final int sport_id;
|
||||
final String sport_name;
|
||||
|
||||
Standing(List args)
|
||||
: sport_id = args[0],
|
||||
sport_name = args[1];
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: Text("49ers"),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
body: SingleChildScrollView(
|
||||
child: Column(
|
||||
return StatefulBuilder(
|
||||
builder: (context, StateSetter setState) => Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: Text("$sport_name Standings"),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
body: ListView(
|
||||
children: <Widget>[
|
||||
Container(
|
||||
child: Text(
|
||||
"W L",
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
),
|
||||
alignment: Alignment(.85, 0),
|
||||
height: 20,
|
||||
color: Colors.grey,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[0],
|
||||
position: 1,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[1],
|
||||
position: 2,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[2],
|
||||
position: 3,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[3],
|
||||
position: 4,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[4],
|
||||
position: 5,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[5],
|
||||
position: 6,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[6],
|
||||
position: 7,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[7],
|
||||
position: 8,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[8],
|
||||
position: 9,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[9],
|
||||
position: 10,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[10],
|
||||
position: 11,
|
||||
),
|
||||
SportLine(
|
||||
s: _schools[11],
|
||||
position: 12,
|
||||
),SportLine(
|
||||
s: _schools[12],
|
||||
position: 13,
|
||||
),SportLine(
|
||||
s: _schools[13],
|
||||
position: 14,
|
||||
),
|
||||
HorizontalStandings(sportName: sport_name,),
|
||||
],
|
||||
),
|
||||
drawer: Drawer(
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
DrawerHeader(
|
||||
child: Text(
|
||||
'Drawer Header',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 24,
|
||||
),
|
||||
),
|
||||
decoration: BoxDecoration(
|
||||
color: Colors.green,
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.home),
|
||||
onPressed: () => Navigator.pushNamed(context, '/'),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class SportLine extends StatelessWidget {
|
||||
const SportLine({
|
||||
Key key,
|
||||
@required
|
||||
this.position,
|
||||
this.s
|
||||
}) : super(key: key);
|
||||
|
||||
final School s;
|
||||
final int position;
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
int w = s.win;
|
||||
int l = s.loss;
|
||||
return Container(
|
||||
color: evenOdd(position),
|
||||
height: 60,
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Container(
|
||||
height: 55,
|
||||
width: 20,
|
||||
//color: Colors.orange,
|
||||
child: Center(
|
||||
child: Text(
|
||||
"$position",
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
)),
|
||||
),
|
||||
Container(
|
||||
//color: Colors.blue,
|
||||
width: 55,
|
||||
child: Image(
|
||||
image: s.logo,
|
||||
),
|
||||
),
|
||||
Container(
|
||||
width: 5,
|
||||
//color: Colors.red,
|
||||
),
|
||||
Container(
|
||||
//color: Colors.pinkAccent,
|
||||
width: 220,
|
||||
child: Text(s.name),
|
||||
),
|
||||
Container(
|
||||
//color: Colors.orange,
|
||||
width: 35,
|
||||
child: Text(
|
||||
"$w",
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
)),
|
||||
Container(
|
||||
//color: Colors.blue,
|
||||
width: 35,
|
||||
child: Text(
|
||||
" $l",
|
||||
style: TextStyle(fontWeight: FontWeight.bold),
|
||||
))
|
||||
],
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Color evenOdd(int i) {
|
||||
Color c = i % 2 == 0 ? Colors.black12 : Colors.white30;
|
||||
return c;
|
||||
}
|
||||
}
|
||||
|
||||
122
lib/team_standings.dart
Normal file
122
lib/team_standings.dart
Normal file
@@ -0,0 +1,122 @@
|
||||
import 'dart:convert';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
import 'screens/sport.dart';
|
||||
|
||||
class HorizontalStandings extends StatelessWidget {
|
||||
static final standingsUrls = {
|
||||
"football": [
|
||||
"https://site.web.api.espn.com/apis/v2/sports/football/college-football/standings?region=us&lang=en&contentorigin=espn&group=12&sort=leaguewinpercent%3Adesc%2Cvsconf_wins%3Adesc%2Cvsconf_gamesbehind%3Aasc%2Cvsconf_playoffseed%3Aasc%2Cwins%3Adesc%2Closses%3Adesc%2Cplayoffseed%3Aasc%2Calpha%3Aasc",
|
||||
],
|
||||
"basketball": [
|
||||
"https://site.web.api.espn.com/apis/v2/sports/basketball/mens-college-basketball/standings?region=us&lang=en&contentorigin=espn&group=11&sort=leaguewinpercent%3Adesc%2Cvsconf_wins%3Adesc%2Cvsconf_gamesbehind%3Aasc%2Cvsconf_playoffseed%3Aasc%2Cwins%3Adesc%2Closses%3Adesc%2Cplayoffseed%3Aasc%2Calpha%3Aasc",
|
||||
"https://site.web.api.espn.com/apis/v2/sports/basketball/womens-college-basketball/standings?region=us&lang=en&contentorigin=espn&group=11&sort=leaguewinpercent%3Adesc%2Cvsconf_wins%3Adesc%2Cvsconf_gamesbehind%3Aasc%2Cvsconf_playoffseed%3Aasc%2Cwins%3Adesc%2Closses%3Adesc%2Cplayoffseed%3Aasc%2Calpha%3Aasc",
|
||||
],
|
||||
};
|
||||
|
||||
final String sportName;
|
||||
|
||||
const HorizontalStandings({Key key, this.sportName}) : super(key: key);
|
||||
|
||||
Future<Widget> getStandingsTable(String url) async {
|
||||
var response = await http.get(url);
|
||||
var body = json.decode(response.body);
|
||||
if (body['children'].length == 0) body['children'] = [body];
|
||||
|
||||
var res = Center(
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
Text(
|
||||
"${body['name']}",
|
||||
style: TextStyle(fontSize: 24),
|
||||
),
|
||||
Column(
|
||||
children: body['children']
|
||||
.map((conference) {
|
||||
var teams = conference['standings']['entries'].map((team) {
|
||||
var stats = {};
|
||||
for (var stat in team['stats']) {
|
||||
stats[stat['name']] = stat;
|
||||
}
|
||||
|
||||
var source = team;
|
||||
|
||||
return {'stats': stats, 'source': source};
|
||||
}).toList();
|
||||
|
||||
var interested = {
|
||||
'football': ['vsConf', 'streak'],
|
||||
'basketball': ['Season','streak']
|
||||
}[sportName.toLowerCase()];
|
||||
|
||||
var table = Table(
|
||||
defaultVerticalAlignment:
|
||||
TableCellVerticalAlignment.middle,
|
||||
children: teams
|
||||
.map((data) {
|
||||
var stats = data['stats'];
|
||||
var team = data['source'];
|
||||
|
||||
var row = interested
|
||||
.map((e) => stats[e])
|
||||
.where((e) => e != null)
|
||||
.map((s) => Text("${s['displayValue']}"))
|
||||
.cast<Widget>()
|
||||
.toList();
|
||||
|
||||
row.insert(0, Text(team['team']['name']));
|
||||
row.insert(
|
||||
0,
|
||||
Image.network(team['team']['logos'][0]['href'],
|
||||
height: 40));
|
||||
|
||||
return TableRow(children: row);
|
||||
})
|
||||
.cast<TableRow>()
|
||||
.toList(),
|
||||
);
|
||||
|
||||
return Column(
|
||||
children: <Widget>[
|
||||
Text(
|
||||
conference['shortName'],
|
||||
style: TextStyle(fontSize: 16),
|
||||
),
|
||||
table,
|
||||
],
|
||||
);
|
||||
})
|
||||
.cast<Widget>()
|
||||
.toList()),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
var sportUrl = standingsUrls[sportName.toLowerCase()];
|
||||
var idx = (Sport.genderSportSwitch && Sport.genderSport) ? 1 : 0;
|
||||
var url = sportUrl[idx];
|
||||
|
||||
return Center(
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
FutureBuilder<Widget>(
|
||||
future: getStandingsTable(url),
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.hasError) return Text(snapshot.error.toString());
|
||||
if (!snapshot.hasData) return CircularProgressIndicator();
|
||||
|
||||
return snapshot.data;
|
||||
},
|
||||
)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
318
pubspec.lock
318
pubspec.lock
@@ -7,21 +7,21 @@ packages:
|
||||
name: archive
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.11"
|
||||
version: "2.0.13"
|
||||
args:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: args
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.5.2"
|
||||
version: "1.6.0"
|
||||
async:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: async
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.4.0"
|
||||
version: "2.4.1"
|
||||
bloc:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -35,21 +35,42 @@ packages:
|
||||
name: boolean_selector
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.5"
|
||||
version: "2.0.0"
|
||||
cached_network_image:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: cached_network_image
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.2.0"
|
||||
charcode:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: charcode
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.2"
|
||||
version: "1.1.3"
|
||||
chewie:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: chewie
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.9.10"
|
||||
clock:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: clock
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.1"
|
||||
collection:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: collection
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.14.11"
|
||||
version: "1.14.12"
|
||||
convert:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -63,7 +84,7 @@ packages:
|
||||
name: crypto
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.3"
|
||||
version: "2.1.4"
|
||||
cupertino_icons:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -71,6 +92,27 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.3"
|
||||
dio:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: dio
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.9"
|
||||
file:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: file
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.1.0"
|
||||
file_picker:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: file_picker
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.9.0"
|
||||
flutter:
|
||||
dependency: "direct main"
|
||||
description: flutter
|
||||
@@ -83,6 +125,34 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.2.0"
|
||||
flutter_cache_manager:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: flutter_cache_manager
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.2.2"
|
||||
flutter_keyboard_visibility:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: flutter_keyboard_visibility
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.8.0"
|
||||
flutter_markdown:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: flutter_markdown
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.5"
|
||||
flutter_plugin_android_lifecycle:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: flutter_plugin_android_lifecycle
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.7"
|
||||
flutter_test:
|
||||
dependency: "direct dev"
|
||||
description: flutter
|
||||
@@ -99,7 +169,7 @@ packages:
|
||||
name: http
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.12.0+4"
|
||||
version: "0.12.1"
|
||||
http_parser:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -113,7 +183,14 @@ packages:
|
||||
name: image
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.4"
|
||||
version: "2.1.12"
|
||||
image_picker:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: image_picker
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.6.5+3"
|
||||
intl:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -121,6 +198,41 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.16.1"
|
||||
jiffy:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: jiffy
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.1"
|
||||
js:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: js
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.6.1+1"
|
||||
json_annotation:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: json_annotation
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.1"
|
||||
logging:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: logging
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.11.4"
|
||||
markdown:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: markdown
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.3"
|
||||
matcher:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -135,6 +247,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.8"
|
||||
mime:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: mime
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.9.6+3"
|
||||
nested:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -142,6 +261,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.0.4"
|
||||
open_iconic_flutter:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: open_iconic_flutter
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.0"
|
||||
path:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -149,13 +275,34 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.6.4"
|
||||
path_provider:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: path_provider
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.6.7"
|
||||
path_provider_macos:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: path_provider_macos
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.0.4+1"
|
||||
path_provider_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: path_provider_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.1"
|
||||
pedantic:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: pedantic
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.8.0+1"
|
||||
version: "1.9.0"
|
||||
petitparser:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -163,20 +310,34 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.4.0"
|
||||
platform:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: platform
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.2.1"
|
||||
plugin_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: plugin_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.2"
|
||||
provider:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: provider
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "4.0.4"
|
||||
version: "4.0.5+1"
|
||||
quiver:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: quiver
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.5"
|
||||
version: "2.1.3"
|
||||
rxdart:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -190,14 +351,14 @@ packages:
|
||||
name: shared_preferences
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.5.6+3"
|
||||
version: "0.5.7"
|
||||
shared_preferences_macos:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: shared_preferences_macos
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.0.1+6"
|
||||
version: "0.0.1+7"
|
||||
shared_preferences_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -230,7 +391,21 @@ packages:
|
||||
name: source_span
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.5.5"
|
||||
version: "1.7.0"
|
||||
sqflite:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: sqflite
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.3.0"
|
||||
sqflite_common:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: sqflite_common
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.0+1"
|
||||
stack_trace:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -245,6 +420,20 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0"
|
||||
stream_chat:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: stream_chat
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.26"
|
||||
stream_chat_flutter:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: stream_chat_flutter
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.26"
|
||||
string_scanner:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -252,6 +441,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.5"
|
||||
synchronized:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: synchronized
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.2.0"
|
||||
table_calendar:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@@ -259,6 +455,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.2.3"
|
||||
table_sticky_headers:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: table_sticky_headers
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.2"
|
||||
term_glyph:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -272,7 +475,7 @@ packages:
|
||||
name: test_api
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.2.11"
|
||||
version: "0.2.15"
|
||||
typed_data:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -280,6 +483,41 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.6"
|
||||
url_launcher:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: url_launcher
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.4.5"
|
||||
url_launcher_macos:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: url_launcher_macos
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.0.1+5"
|
||||
url_launcher_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: url_launcher_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.6"
|
||||
url_launcher_web:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: url_launcher_web
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.1+2"
|
||||
uuid:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: uuid
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.4"
|
||||
vector_math:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -287,13 +525,55 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.8"
|
||||
video_player:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: video_player
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.10.9+1"
|
||||
video_player_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: video_player_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.5"
|
||||
video_player_web:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: video_player_web
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.2+1"
|
||||
visibility_detector:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: visibility_detector
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.4"
|
||||
wakelock:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: wakelock
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.4+1"
|
||||
web_socket_channel:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: web_socket_channel
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.1.0"
|
||||
xml:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: xml
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.5.0"
|
||||
version: "3.6.1"
|
||||
sdks:
|
||||
dart: ">=2.6.0 <3.0.0"
|
||||
flutter: ">=1.12.13+hotfix.4 <2.0.0"
|
||||
dart: ">=2.7.0 <3.0.0"
|
||||
flutter: ">=1.12.13+hotfix.5 <2.0.0"
|
||||
|
||||
@@ -21,7 +21,7 @@ dependencies:
|
||||
flutter:
|
||||
sdk: flutter
|
||||
flutter_bloc: ^3.2.0
|
||||
|
||||
stream_chat_flutter: ^0.1.2
|
||||
http: ^0.12.0+4
|
||||
shared_preferences: ^0.5.6+3
|
||||
|
||||
@@ -29,6 +29,7 @@ dependencies:
|
||||
# Use with the CupertinoIcons class for iOS style icons.
|
||||
cupertino_icons: ^0.1.2
|
||||
table_calendar:
|
||||
table_sticky_headers:
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
||||
Reference in New Issue
Block a user