View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'dart:math' as math; | |
void main() { | |
runApp(MyApp()); | |
} | |
class CurvePainter extends CustomPainter { | |
@override | |
void paint(Canvas canvas, Size size) { |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//A group of twenty boys are in a football pitch and they want to play football. | |
//I want you to help me create a programme using python or any other programming | |
//language that will help me to break the group into two football teams each consisting of 10 players. | |
//The programme should first ask me to input the names of the two teams; the first team name then the second team name. | |
//Then after that, it should ask me to input the list of names of the twenty boys. | |
//After inputing these names, the programme should give me an output of the two final teams with the team name on top of a list of the 10 players | |
//of each team. The team players should be selected in the order of odd number and even number respectively according to the list of names that will be provided. | |
void main() { | |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
void main() async{ | |
final List<SubSection> subsections = []; | |
final graphQLQuery = { | |
'query': '''query { | |
getSubsections(courseId: 16, sectionId: 16) { | |
id |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
void main() async{ | |
final List<Section> sections = []; | |
final graphQLQuery = { | |
'query': '''query { | |
getSections(courseId: 16) { | |
id |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
void main() async{ | |
final List<Section> sections = []; | |
final graphQLQuery = { | |
'query': '''query GetSections { | |
getSections { | |
id |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
void main() async{ | |
final graphQLQuery = { | |
'query': '''query GetSections { | |
getSections { | |
id |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
void main() async{ | |
final graphQLQuery = { | |
"query": """mutation { | |
upsertSection(courseId: 1, topic: "work") { | |
id | |
courseId | |
topic |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:convert'; | |
import 'package:http/http.dart' as http; | |
void main() async{ | |
final graphQLQuery = { | |
'query': '''mutation Mutation { | |
upsertCourse(classId: 1, title: "english", description:"fff" , creatorId: 1) { | |
id |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
for (int i = 0; i < 5; i++) { | |
print('hello ${i + 1}'); | |
} | |
final course = Course(creatorId: '', courseTitle: '', courseDescription: '', | |
courseSection: [] |
View main.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
List<Meal> meals = [ | |
Meal( | |
id: 'm1', | |
categories: [ | |
'c1', | |
'c2', | |
], | |
title: 'Spaghetti with Tomato Sauce', | |
affordability: Affordability.affordable, |
NewerOlder