Merge remote-tracking branch 'origin/master' into standings
# Conflicts: # pubspec.lock # pubspec.yaml
This commit is contained in:
BIN
images/female.png
Normal file
BIN
images/female.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 21 KiB |
BIN
images/male.png
Normal file
BIN
images/male.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
384
lib/monthly_calendar.dart
Normal file
384
lib/monthly_calendar.dart
Normal file
@@ -0,0 +1,384 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:http/http.dart' as http;
|
||||
import 'package:table_calendar/table_calendar.dart';
|
||||
|
||||
import 'screens/sport_schedule.dart';
|
||||
import 'screens/sport.dart' as globals;
|
||||
import 'dart:convert';
|
||||
|
||||
class Calendar extends StatefulWidget {
|
||||
@override
|
||||
_Calendar createState() => _Calendar();
|
||||
}
|
||||
|
||||
//List<sport_schedule> _selectedEvents; //original that makes events work
|
||||
List _selectedEvents; //Removing the <sport_schedule> allows it to still work. Proceed with caution
|
||||
DateTime selectedDay;
|
||||
Map<DateTime, List<sport_schedule>> _events;
|
||||
|
||||
class _Calendar extends State<Calendar> with TickerProviderStateMixin {
|
||||
AnimationController _animationController;
|
||||
CalendarController _calController;
|
||||
|
||||
int sportID = globals.Sport.sport_ID;
|
||||
static final sportUrl = 'https://charlotte49ers.com/services/adaptive_components.ashx?type=scoreboard&start=0&count=80';
|
||||
|
||||
Future<List<sport_schedule>> getEvents() 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<Map<DateTime, List<sport_schedule>>> getGames() async {
|
||||
Map<DateTime, List<sport_schedule>> mapGrab = {};
|
||||
|
||||
List<sport_schedule> eventInfo = await getEvents();
|
||||
|
||||
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]]);
|
||||
}
|
||||
}
|
||||
return mapGrab;
|
||||
}
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
final _selectedDay = DateTime.now();
|
||||
|
||||
//_selectedEvents = _events[_selectedDay] ?? [];
|
||||
_selectedEvents = [];
|
||||
_calController = CalendarController();
|
||||
|
||||
_animationController = AnimationController(
|
||||
vsync: this,
|
||||
duration: const Duration(milliseconds: 400),
|
||||
);
|
||||
|
||||
_animationController.forward();
|
||||
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
getGames().then((val) => setState(() {
|
||||
_events = val;
|
||||
}));
|
||||
});
|
||||
|
||||
super.initState();
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_animationController.dispose();
|
||||
_calController.dispose();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
//void _DaySelected(DateTime day, List<sport_schedule> events) { //original that makes events work
|
||||
void _DaySelected(DateTime day, List events) { //Removing the <sport_schedule> allows it to still work. Proceed with caution
|
||||
setState(() {
|
||||
_selectedEvents = events;
|
||||
selectedDay = DateTime(day.year, day.month, day.day);
|
||||
});
|
||||
}
|
||||
|
||||
/*void _onVisibleDaysChanged(DateTime first, DateTime last, CalendarFormat format) {
|
||||
print('CALLBACK: _onVisibleDaysChanged');
|
||||
}
|
||||
void _onCalendarCreated(DateTime first, DateTime last, CalendarFormat format) {
|
||||
print('CALLBACK: _onCalendarCreated');
|
||||
}*/
|
||||
|
||||
//----- Builds calendar and event Lister -----
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Center(
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
_buildCalendar(),
|
||||
const SizedBox(height: 8.0),
|
||||
Expanded(child: _eventLister()),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
//----- Builds calendar -----
|
||||
@override
|
||||
Widget _buildCalendar() {
|
||||
return TableCalendar(
|
||||
calendarController: _calController,
|
||||
initialCalendarFormat: CalendarFormat.month,
|
||||
startingDayOfWeek: StartingDayOfWeek.sunday,
|
||||
//availableGestures: AvailableGestures.all,
|
||||
events: _events,
|
||||
|
||||
availableCalendarFormats: const {
|
||||
CalendarFormat.month: '',
|
||||
},
|
||||
|
||||
calendarStyle: CalendarStyle(
|
||||
outsideWeekendStyle: TextStyle(
|
||||
color: Colors.grey,
|
||||
),
|
||||
|
||||
weekendStyle: TextStyle(
|
||||
color: Colors.black,
|
||||
),
|
||||
),
|
||||
|
||||
daysOfWeekStyle: DaysOfWeekStyle(
|
||||
weekendStyle: TextStyle(
|
||||
color: Colors.black,
|
||||
),
|
||||
weekdayStyle: TextStyle(
|
||||
color: Colors.black,
|
||||
),
|
||||
),
|
||||
|
||||
headerStyle: HeaderStyle(
|
||||
centerHeaderTitle: true,
|
||||
formatButtonVisible: false, //hides button that formats between 1 week, 2 week, month
|
||||
//formatButtonShowsNext: false,
|
||||
),
|
||||
|
||||
builders: CalendarBuilders(
|
||||
selectedDayBuilder: (context, date, _) {
|
||||
return Container(
|
||||
margin: const EdgeInsets.all(4.0),
|
||||
alignment: Alignment.center,
|
||||
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(
|
||||
color: Color.fromRGBO(0, 112, 60, 1), //UNCC Green
|
||||
),
|
||||
color: Color.fromRGBO(179, 163, 105, 1), //UNCC Gold
|
||||
borderRadius: BorderRadius.circular(10.0)
|
||||
),
|
||||
|
||||
child: Text(
|
||||
'${date.day}',
|
||||
style: TextStyle(color: Colors.white),
|
||||
),
|
||||
);
|
||||
},
|
||||
|
||||
todayDayBuilder: (context, date, _) {
|
||||
|
||||
return Container(
|
||||
margin: const EdgeInsets.all(4.0),
|
||||
alignment: Alignment.center,
|
||||
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(
|
||||
color: Color.fromRGBO(0, 112, 60, 1), //UNCC Green
|
||||
),
|
||||
borderRadius: BorderRadius.circular(10.0)
|
||||
),
|
||||
|
||||
child: Text(
|
||||
'${date.day}',
|
||||
style: TextStyle(
|
||||
color: Colors.black,
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
|
||||
markersBuilder: (context, date, events, holidays) {
|
||||
final miniBox = <Widget>[];
|
||||
|
||||
if (events.isNotEmpty) {
|
||||
miniBox.add(
|
||||
Positioned(
|
||||
right: 1,
|
||||
bottom: 1,
|
||||
child: _buildEventsMarker(date, events),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
return miniBox;
|
||||
},
|
||||
),
|
||||
|
||||
onDaySelected: (date, events) {
|
||||
_DaySelected(date, events);
|
||||
_animationController.forward(from: 0.0);
|
||||
},
|
||||
|
||||
//onVisibleDaysChanged: _onVisibleDaysChanged,
|
||||
//onCalendarCreated: _onCalendarCreated,
|
||||
|
||||
);
|
||||
}
|
||||
|
||||
//----- Creates event box display (mini box) -----
|
||||
Widget _buildEventsMarker(DateTime date, List events) {
|
||||
return AnimatedContainer(
|
||||
duration: const Duration(milliseconds: 300),
|
||||
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.rectangle,
|
||||
|
||||
/*border: _calController.isSelected(date) //if selected date
|
||||
? Border.all(color: Colors.black, width: 1.5,)
|
||||
: _calController.isToday(date) //if today's date
|
||||
? Border.all(color: Colors.black, width: 1.5,)
|
||||
: Border.all(color: Colors.black, width: 0,),*/
|
||||
|
||||
//color: Color.fromRGBO(0, 112, 60, 1), //UNCC Green
|
||||
//color: Colors.grey,
|
||||
|
||||
//if selected date && home game / else away game
|
||||
color: _calController.isSelected(date)
|
||||
? Colors.blue[400]
|
||||
: Color.fromRGBO(0, 112, 60, 1), //UNCC Green
|
||||
//: Colors.grey,
|
||||
),
|
||||
|
||||
width: 16.0,
|
||||
height: 16.0,
|
||||
|
||||
child: Center(
|
||||
child: Text(
|
||||
'${events.length}',
|
||||
style: TextStyle().copyWith(
|
||||
color: Colors.white,
|
||||
fontSize: 12.0,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
//----- Creates event display -----
|
||||
Widget _eventLister() {
|
||||
return ListView(
|
||||
children: _selectedEvents.map((event) => Container(
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(
|
||||
color: Color.fromRGBO(0, 112, 60, 1), //UNCC Green
|
||||
width: 0.8,
|
||||
),
|
||||
|
||||
borderRadius: BorderRadius.circular(12.0),
|
||||
),
|
||||
|
||||
height: 70.0,
|
||||
margin: const EdgeInsets.symmetric(horizontal: 8.0, vertical: 4.0),
|
||||
|
||||
child: ListTile(
|
||||
leading: Icon(Icons.image), //opponent logo - Not done (Placeholder)
|
||||
title: Wrap(
|
||||
|
||||
|
||||
children: <Widget>[
|
||||
if (event.location_indicator.toString() == "H")
|
||||
Text(
|
||||
'vs. ',
|
||||
style: TextStyle( //home game
|
||||
fontSize: 11.6,
|
||||
),
|
||||
)
|
||||
else
|
||||
Text(
|
||||
'at ',
|
||||
style: TextStyle( //away game
|
||||
fontSize: 11.6,
|
||||
),
|
||||
),
|
||||
|
||||
Text(
|
||||
event.opponentTitle.toString(),
|
||||
style: TextStyle(
|
||||
fontSize: 11.6,
|
||||
),
|
||||
) //opponent name
|
||||
],
|
||||
),
|
||||
|
||||
//Type of sport - Location
|
||||
subtitle: Text(
|
||||
event.sportTitle.toString() + " - " + event.location.toString(),
|
||||
style: TextStyle(
|
||||
fontSize: 10.3,
|
||||
),
|
||||
),
|
||||
|
||||
trailing: Wrap(
|
||||
//mainAxisSize: MainAxisSize.min,
|
||||
|
||||
children: <Widget>[
|
||||
//---Score---
|
||||
//Game hasn't occured
|
||||
if (event.status.toString() == "null")
|
||||
Text("TBD"),
|
||||
|
||||
//---Scores---
|
||||
if (event.status.toString() == "W" || event.status.toString() == "L" || event.status.toString() == "T") //Finished games
|
||||
Text(event.team_score.toString() + " - " + event.opponent_score.toString() + " ")
|
||||
|
||||
else if (event.status.toString() == "N" && event.team_score.toString() != "null" && event.opponent_score.toString() != "null") //Games that don't count
|
||||
Text(event.team_score.toString() + " - " + event.opponent_score.toString() + " "),
|
||||
|
||||
//---Game Status---
|
||||
if (event.status.toString() == "W") //Win
|
||||
Text(
|
||||
(" " + event.status.toString() + " "),
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
backgroundColor: Color.fromRGBO(0, 112, 60, 1),
|
||||
)
|
||||
),
|
||||
|
||||
if (event.status.toString() == "L" || event.status.toString() == "T") //Lose-Tie
|
||||
Text(
|
||||
(" " + event.status.toString() + " "),
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
color: Colors.black,
|
||||
backgroundColor: Colors.grey,
|
||||
)
|
||||
),
|
||||
|
||||
if (event.status.toString() == "N" && event.postscore.toString() != "Canceled") //N
|
||||
Text(
|
||||
(" " + event.status.toString() + " "),
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(
|
||||
color: Colors.black,
|
||||
backgroundColor: Colors.grey,
|
||||
)
|
||||
)
|
||||
else if (event.team_score.toString() == "null" && event.opponent_score.toString() == "null"
|
||||
&& event.status.toString() == "N") //Game was canceled
|
||||
Text(
|
||||
"Canceled",
|
||||
style: TextStyle(
|
||||
color: Colors.red,
|
||||
)
|
||||
),
|
||||
|
||||
],
|
||||
),
|
||||
onTap: () => print('$event tapped!'), //When event display is clicked
|
||||
),
|
||||
)).toList(),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -76,6 +76,7 @@ class ArticleCard extends StatelessWidget {
|
||||
],
|
||||
);
|
||||
|
||||
|
||||
return SizedBox(
|
||||
width: widthIn(context),
|
||||
child: Card(
|
||||
|
||||
@@ -43,7 +43,14 @@ class HorizontalNewsFeed extends StatelessWidget {
|
||||
title: title,
|
||||
trailing: IconButton(
|
||||
icon: Icon(Icons.navigate_next),
|
||||
|
||||
onPressed: () => Navigator.of(context).pushNamed('/Sport'),
|
||||
|
||||
/*onPressed: () { //changed
|
||||
Navigator.of(context).pushNamed('/Sport');
|
||||
print(Navigator.of(context).pushNamed('/Sport'));
|
||||
}*/
|
||||
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
import 'package:capstone_hungry_hippos/screens/chat.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/favorites_reorder.dart';
|
||||
import 'package:capstone_hungry_hippos/screens/schedule.dart';
|
||||
import 'package:capstone_hungry_hippos/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';
|
||||
|
||||
class RouteGenerator {
|
||||
static Route<dynamic> generateRoute(RouteSettings settings) {
|
||||
@@ -23,8 +25,12 @@ class RouteGenerator {
|
||||
return MaterialPageRoute(builder: (_) => Standing());
|
||||
case '/Chat':
|
||||
return MaterialPageRoute(builder: (_) => Chat());
|
||||
case '/Details':
|
||||
return MaterialPageRoute(builder: (_) => Details());
|
||||
case '/Favorites':
|
||||
return MaterialPageRoute(builder: (_) => FavoritesManager());
|
||||
case '/Twitter':
|
||||
return MaterialPageRoute(builder: (_) => TwitterFeed());
|
||||
default:
|
||||
return _errorRoute();
|
||||
}
|
||||
|
||||
332
lib/screens/game_details.dart
Normal file
332
lib/screens/game_details.dart
Normal file
@@ -0,0 +1,332 @@
|
||||
import 'package:flutter/cupertino.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'dart:io';
|
||||
|
||||
class Details extends StatelessWidget {
|
||||
|
||||
static final List<Item> colorList = <Item>[
|
||||
const Item('FootBall', Colors.green),
|
||||
const Item("BasketBall", Colors.red),
|
||||
const Item("Soccer", Colors.pinkAccent),
|
||||
const Item('Baseball', Colors.orange),
|
||||
];
|
||||
|
||||
Item _curSport = colorList[0];
|
||||
|
||||
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
Item selectedSport;
|
||||
|
||||
return StatefulBuilder(
|
||||
builder: (context, StateSetter setState) => Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: Text('Game Details'),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
body: Container(
|
||||
color: Colors.black12,
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
Container(
|
||||
color: Colors.black12,
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
top: BorderSide(
|
||||
color: Colors.black,
|
||||
width: 2.0,
|
||||
),
|
||||
),
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 20.0, horizontal: 40.0),
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Padding(
|
||||
padding: EdgeInsets.only(right: 5),
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
SizedBox(
|
||||
height: 45,
|
||||
width: 45,
|
||||
child: Image.network('https://upload.wikimedia.org/wikipedia/en/thumb/3/33/Charlotte_49ers_logo.svg/1200px-Charlotte_49ers_logo.svg.png'),
|
||||
),
|
||||
Text('UNCC',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0, horizontal: 25),
|
||||
child: Text('10',
|
||||
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold)
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0, horizontal: 25),
|
||||
child: Text('vs',
|
||||
style: TextStyle(
|
||||
decoration: TextDecoration.underline,
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0, horizontal: 25),
|
||||
child: Text('52',
|
||||
style: TextStyle(fontSize: 16, fontWeight: FontWeight.bold),
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 5),
|
||||
child: Column(
|
||||
children: <Widget>[
|
||||
SizedBox(
|
||||
width: 50,
|
||||
height: 50,
|
||||
child: Image.network('https://www.clemson.edu/brand/resources/logos/paw/orange.png'),
|
||||
),
|
||||
Text('Clemson',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
color: Colors.black12,
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
border: Border(
|
||||
top: BorderSide(
|
||||
color: Colors.black,
|
||||
width: 2.0,
|
||||
),
|
||||
bottom: BorderSide(
|
||||
color: Colors.black,
|
||||
width: 2.0,
|
||||
),
|
||||
),
|
||||
),
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 0.0, horizontal: 5.0),
|
||||
child: Row(
|
||||
children: <Widget>[
|
||||
Container(
|
||||
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),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 100,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Play-By-Play',
|
||||
style: TextStyle(
|
||||
fontSize: 14,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
color: Colors.black12,
|
||||
child: Card(
|
||||
child: SizedBox(
|
||||
width: 89,
|
||||
height: 30,
|
||||
child: Center(
|
||||
child: Text('Chat',
|
||||
style: TextStyle(fontSize: 16),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Container(
|
||||
child: GameUpdates(),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
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, '/'),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.table_chart),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Standing'),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.calendar_today),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Schedule'),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
class Item {
|
||||
const Item(this.name, this.color);
|
||||
|
||||
final String name;
|
||||
final Color color;
|
||||
}
|
||||
|
||||
class Play {
|
||||
final String title;
|
||||
final String action;
|
||||
|
||||
Play(
|
||||
this.title,
|
||||
this.action,
|
||||
);
|
||||
}
|
||||
|
||||
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) {
|
||||
var myStream = Stream<int>.periodic(Duration(seconds:5), (x) => x).take(15);
|
||||
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 StreamBuilder(
|
||||
stream: myStream,
|
||||
initialData: '0',
|
||||
builder: (ctx, snapshot){
|
||||
return Card(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 10, horizontal: 5),
|
||||
child: Text('${snapshot.data}'),
|
||||
),
|
||||
);
|
||||
},
|
||||
); */
|
||||
|
||||
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}'),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
}
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -48,6 +48,18 @@ class _HomeState extends State<Home> {
|
||||
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(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.voice_chat),
|
||||
onPressed: () => Navigator.pushNamed(context, '/Twitter'),
|
||||
),
|
||||
),
|
||||
ListTile(
|
||||
title: IconButton(
|
||||
icon: Icon(Icons.settings),
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import '../monthly_calendar.dart';
|
||||
|
||||
class Schedule extends StatelessWidget{
|
||||
|
||||
final calendar = Calendar();
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return StatefulBuilder(
|
||||
@@ -10,7 +14,9 @@ class Schedule extends StatelessWidget{
|
||||
title: Text("49ers"),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
body: Text("Schedule Goes Here"),
|
||||
body: Container (
|
||||
child: calendar,
|
||||
),
|
||||
drawer: Drawer(
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
|
||||
@@ -12,9 +12,15 @@ class Sport extends StatelessWidget {
|
||||
|
||||
Item _curSport = colorList[0];
|
||||
|
||||
|
||||
final feed = Feed(); // was var not final
|
||||
|
||||
bool genderSportSwitch = false; //determines if sport needs the gender switch
|
||||
final String imageMale = 'images/male.png';
|
||||
final String imageFemale = 'images/female.png';
|
||||
static bool genderSport = false; //determines which gender switch is set M - false / F - True
|
||||
|
||||
static int sport_ID;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
Item selectedSport;
|
||||
@@ -25,6 +31,32 @@ class Sport extends StatelessWidget {
|
||||
centerTitle: false,
|
||||
title: buildDropdownButton(selectedSport, setState),
|
||||
backgroundColor: _curSport.color,
|
||||
|
||||
//--Gender Switch-- Need to make condition to determine gender
|
||||
actions: <Widget>[
|
||||
if (genderSportSwitch == true)
|
||||
Switch(
|
||||
value: genderSport,
|
||||
onChanged: (value) {
|
||||
setState(() {
|
||||
if (value == false) {
|
||||
genderSport = false;
|
||||
}
|
||||
else {
|
||||
genderSport = true;
|
||||
}
|
||||
|
||||
print("value: " + value.toString());
|
||||
print("gender: " + genderSport.toString());
|
||||
});
|
||||
},
|
||||
inactiveThumbColor: Colors.lightBlue,
|
||||
inactiveThumbImage: Image.asset(imageMale).image,
|
||||
|
||||
activeColor: Colors.pinkAccent,
|
||||
activeThumbImage: Image.asset(imageFemale).image,
|
||||
),
|
||||
]
|
||||
),
|
||||
body: ListView(
|
||||
children: <Widget>[
|
||||
@@ -91,6 +123,45 @@ class Sport extends StatelessWidget {
|
||||
onChanged: (Item value) {
|
||||
setState(() {
|
||||
_curSport = value;
|
||||
|
||||
print("genderSport: " + genderSport.toString());
|
||||
|
||||
//Will set the sport id / Display gender switch
|
||||
switch (_curSport.name) { //prints are temp
|
||||
case 'FootBall':
|
||||
genderSportSwitch = false;
|
||||
sport_ID = 3;
|
||||
break;
|
||||
|
||||
case 'BasketBall':
|
||||
genderSportSwitch = true;
|
||||
|
||||
if (genderSport == false) {
|
||||
sport_ID = 5; //Male
|
||||
}
|
||||
else {
|
||||
sport_ID = 13; //Female
|
||||
}
|
||||
break;
|
||||
|
||||
case 'Soccer':
|
||||
genderSportSwitch = true;
|
||||
|
||||
if (genderSport == false) {
|
||||
sport_ID = 9; //Male
|
||||
}
|
||||
else {
|
||||
sport_ID = 17; //Female
|
||||
}
|
||||
break;
|
||||
|
||||
case 'Baseball':
|
||||
genderSportSwitch = false;
|
||||
|
||||
sport_ID = 1;
|
||||
break;
|
||||
}
|
||||
print(sport_ID);
|
||||
});
|
||||
},
|
||||
items: colorList.map<DropdownMenuItem<Item>>((Item item) {
|
||||
|
||||
64
lib/screens/sport_schedule.dart
Normal file
64
lib/screens/sport_schedule.dart
Normal file
@@ -0,0 +1,64 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class sport_schedule {
|
||||
final int id; //id for each game
|
||||
final DateTime date; //date: 2020-09-05T00:00:00
|
||||
final String location_indicator; //location_indicator: H-Home / A-Away
|
||||
final String location; //location: Knoxville, Tenn., Charlotte, NC
|
||||
|
||||
// -- sport json --
|
||||
final int idSport; //id: Each sport different number
|
||||
final String sportTitle; //title: Football, Men's Soccer
|
||||
final String gender; //gender: M - F
|
||||
|
||||
// -- opponent json --
|
||||
final String opponentTitle; //title: Tennessee, Norfolk State
|
||||
//final image - image: (do later)
|
||||
|
||||
// -- result json --
|
||||
final String status; //status: W - T - L
|
||||
final String team_score; //team_score:
|
||||
final String opponent_score; //opponent_score:
|
||||
final String postscore;
|
||||
|
||||
sport_schedule(
|
||||
this.id, {
|
||||
this.date,
|
||||
this.location_indicator,
|
||||
this.location,
|
||||
|
||||
this.idSport,
|
||||
this.sportTitle,
|
||||
this.gender,
|
||||
|
||||
this.opponentTitle,
|
||||
//this.image,
|
||||
|
||||
this.status,
|
||||
this.team_score,
|
||||
this.opponent_score,
|
||||
this.postscore,
|
||||
});
|
||||
|
||||
factory sport_schedule.fromJson(Map<String, dynamic> json) {
|
||||
return sport_schedule(
|
||||
json['id'],
|
||||
date: DateTime.parse(json['date']),
|
||||
location_indicator: json['location_indicator'],
|
||||
location: json['location'],
|
||||
|
||||
idSport: json['sport']['id'],
|
||||
sportTitle: json['sport']['title'],
|
||||
gender: json['sport']['gender'],
|
||||
|
||||
opponentTitle: json['opponent']['title'],
|
||||
//image: json['opponent']['image'],
|
||||
|
||||
status: json['result']['status'],
|
||||
|
||||
team_score: json['result']['team_score'],
|
||||
opponent_score: json['result']['opponent_score'],
|
||||
postscore: json['result']['postscore'],
|
||||
);
|
||||
}
|
||||
}
|
||||
65
lib/screens/twitter_widget.dart
Normal file
65
lib/screens/twitter_widget.dart
Normal file
@@ -0,0 +1,65 @@
|
||||
import 'package:capstone_hungry_hippos/twitter_assets/twitterFeed.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import '../twitter_assets/tweet.dart';
|
||||
|
||||
class TwitterFeed extends StatelessWidget{
|
||||
List<Tweet> fuck = [];
|
||||
final test = new Tweet(1, "We'll get through this together, Niner Nation. #WeAreAllNiners", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
final test2 = new Tweet(2, "Let's test your UNC Charlotte knowledge...do you know why we became the 49ers? Here's the full history on the pioneering spirit that shaped our trajectory http://bit.ly/UNCC-1949", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
final test3 = new Tweet(3, "Niner Nation means uplifting each other. This 4/9 Day, let's show our students why #WeAreAllNiners by supporting the Student Emergency Relief Fund ️ http://bit.ly/UNCC-SER", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
final test4 = new Tweet(4, "Niner Nation: Chancellor Dubois shares that UNC Charlotte will be able to apply our established parking refund procedures with special considerations for the impact of COVID-19.", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
final test5 = new Tweet(5, "4/9 Day is just for us, Niner Nation. From wherever you are, you're family #WeAreAllNiners", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
final test6= new Tweet(6, "Niner Nation, #49erAlumni Gene Johnson ’73 is getting us excited for 4/9 Day tomorrow! Put on your Niner gear, call your friends and let’s celebrate together virtually \n We’re all in this together! ", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
final test7 = new Tweet(7, "From virtual events to one-on-one sessions with counselors, it's easy to stay connected with @UNCCAdmissions", "@unccharlotte", "https://pbs.twimg.com/profile_images/1175214096280629249/QC79Xju2_400x400.jpg", "test");
|
||||
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
fuck.add(test);
|
||||
fuck.add(test2);
|
||||
fuck.add(test3);
|
||||
fuck.add(test4);
|
||||
fuck.add(test5);
|
||||
fuck.add(test6);
|
||||
fuck.add(test7);
|
||||
|
||||
return StatefulBuilder(
|
||||
builder: (context, StateSetter setState) => Scaffold(
|
||||
appBar: AppBar(
|
||||
centerTitle: false,
|
||||
title: Text("49ers Tweets"),
|
||||
backgroundColor: Colors.green,
|
||||
),
|
||||
body: Container(
|
||||
color: Colors.black12,
|
||||
child:
|
||||
VerticalTwitterFeed(twitterFeed: fuck),
|
||||
),
|
||||
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, '/'),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
)
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
69
lib/twitter_assets/tweet.dart
Normal file
69
lib/twitter_assets/tweet.dart
Normal file
@@ -0,0 +1,69 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class Tweet {
|
||||
final int id;
|
||||
final String text;
|
||||
final String userName;
|
||||
final String userImgUrl;
|
||||
final String url;
|
||||
|
||||
Tweet(
|
||||
this.id,
|
||||
this.text,
|
||||
this.userName,
|
||||
this.userImgUrl,
|
||||
this.url,
|
||||
);
|
||||
|
||||
/*factory Tweet.fromJson(Map<String, dynamic> json) {
|
||||
return Tweet(
|
||||
json['id_str'],
|
||||
text: json['text'],
|
||||
userName: json['user']['name'],
|
||||
userImgUrl: json['user']['profile_image_url_https'],
|
||||
url: json['urls']['expanded_url'],
|
||||
);
|
||||
}
|
||||
Commenting out till we figure out the API
|
||||
*/
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
class TwitterCard extends StatelessWidget{
|
||||
|
||||
const TwitterCard({
|
||||
Key key,
|
||||
@required this.tweet,
|
||||
}) : super(key: key);
|
||||
|
||||
final Tweet tweet;
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Card(
|
||||
child: Padding(
|
||||
padding: EdgeInsets.symmetric(vertical: 10, horizontal: 0),
|
||||
child: ListTile(
|
||||
leading: SizedBox(
|
||||
height: 150,
|
||||
width: 75,
|
||||
child: Container(
|
||||
decoration: BoxDecoration(
|
||||
shape: BoxShape.circle,
|
||||
image: DecorationImage(
|
||||
fit: BoxFit.fill,
|
||||
image: NetworkImage('${tweet.userImgUrl}'),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
title: Text('${tweet.userName}'),
|
||||
subtitle: Text('${tweet.text}'),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
78
lib/twitter_assets/twitterFeed.dart
Normal file
78
lib/twitter_assets/twitterFeed.dart
Normal file
@@ -0,0 +1,78 @@
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:capstone_hungry_hippos/screens/twitter_widget.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:http/http.dart' as http;
|
||||
|
||||
import 'dart:convert';
|
||||
|
||||
import 'tweet.dart';
|
||||
|
||||
class TwitterFeedCreation {
|
||||
static final twitterBase = 'https://api.twitter.com/1.1/search';
|
||||
|
||||
static final apiKey = 'AFBfOqx8uXIUBZMxAFoQyO3zA';
|
||||
static final apiSecret = '48Gp7nczz9SqExorwYuWpA6Nmviuox6Beq83kjH1XtYtunorym';
|
||||
|
||||
getToken() async {
|
||||
http.Response response = await http.get('https://api.twitter.com/oauth2/token',);
|
||||
}
|
||||
|
||||
/*Future<List<Tweet>> getPage({int size = 10}) async {
|
||||
var url = '$twitterBase/tweets.json?q=from%3ACharlotteFTBL&result_type=mixed&count=$size';
|
||||
http.Response response = await http.get(url,
|
||||
headers: <String, String> {'authorization': apiKey,}
|
||||
);
|
||||
Iterable tweets = json.decode(response.body);
|
||||
return tweets.map((e) => Tweet.fromJson(e)).toList();
|
||||
} */
|
||||
}
|
||||
|
||||
|
||||
class VerticalTwitterFeed extends StatelessWidget{
|
||||
|
||||
final List<Tweet> twitterFeed;
|
||||
|
||||
const VerticalTwitterFeed({
|
||||
Key key,
|
||||
@required this.twitterFeed,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
||||
return Container(
|
||||
child: ListView.builder(
|
||||
scrollDirection: Axis.vertical,
|
||||
itemCount: twitterFeed.length,
|
||||
itemBuilder: (ctx, idx){
|
||||
return TwitterCard(
|
||||
tweet: twitterFeed[idx],
|
||||
);
|
||||
},
|
||||
),
|
||||
);
|
||||
|
||||
/* return Container(
|
||||
child: FutureBuilder(
|
||||
future: twitterFeed.getPage(),
|
||||
builder: (ctx, snapshot){
|
||||
if(!snapshot.hasData){
|
||||
return Center(child: CircularProgressIndicator());
|
||||
}else{
|
||||
List<Tweet> tweets = snapshot.data;
|
||||
return ListView.builder(
|
||||
scrollDirection: Axis.vertical,
|
||||
itemCount: tweets.length,
|
||||
itemBuilder: (ctx, idx) {
|
||||
return TwitterCard(
|
||||
tweet: tweets[idx],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
},
|
||||
),
|
||||
); */
|
||||
}
|
||||
}
|
||||
25
pubspec.lock
25
pubspec.lock
@@ -114,6 +114,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.12"
|
||||
intl:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: intl
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.16.1"
|
||||
matcher:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -148,7 +155,7 @@ packages:
|
||||
name: pedantic
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.8.0+1"
|
||||
version: "1.9.0"
|
||||
petitparser:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -205,6 +212,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.2+4"
|
||||
simple_gesture_detector:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: simple_gesture_detector
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.4"
|
||||
sky_engine:
|
||||
dependency: transitive
|
||||
description: flutter
|
||||
@@ -238,6 +252,13 @@ packages:
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.5"
|
||||
table_calendar:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: table_calendar
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.2.3"
|
||||
term_glyph:
|
||||
dependency: transitive
|
||||
description:
|
||||
@@ -251,7 +272,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:
|
||||
|
||||
@@ -14,7 +14,8 @@ description: A sports app for UNC-Charlotte 49ers
|
||||
version: 1.0.0+1
|
||||
|
||||
environment:
|
||||
sdk: ">=2.1.0 <3.0.0"
|
||||
#sdk: ">=2.1.0 <3.0.0"
|
||||
sdk: ">=2.6.0 <3.0.0"
|
||||
|
||||
dependencies:
|
||||
flutter:
|
||||
@@ -27,12 +28,12 @@ dependencies:
|
||||
# The following adds the Cupertino Icons font to your application.
|
||||
# Use with the CupertinoIcons class for iOS style icons.
|
||||
cupertino_icons: ^0.1.2
|
||||
table_calendar:
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
|
||||
|
||||
# For information on the generic Dart part of this file, see the
|
||||
# following page: https://dart.dev/tools/pub/pubspec
|
||||
|
||||
@@ -60,6 +61,8 @@ flutter:
|
||||
- assets/school_logos/UTEP.png
|
||||
- assets/school_logos/UTSA.png
|
||||
- assets/school_logos/wku.png
|
||||
- images/male.png
|
||||
- images/female.png
|
||||
|
||||
# An image asset can refer to one or more resolution-specific "variants", see
|
||||
# https://flutter.dev/assets-and-images/#resolution-aware.
|
||||
|
||||
Reference in New Issue
Block a user