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
<meta charset="utf-8"> | |
<title>Chika Java script</title> | |
<style media="screen"> |
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
return Scaffold( | |
appBar: AppBar( | |
title: Text("Texty Navigation"), | |
), | |
drawer: Drawer( | |
child: Container( | |
padding: EdgeInsets.only(top: 60.0), | |
decoration: BoxDecoration(color: Color.fromRGBO(55, 113, 170, 1.0)), | |
child: Column( | |
children: <Widget>[ |
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
class Lesson { | |
String title; | |
String level; | |
double indicatorValue; | |
int price; | |
String content; | |
Lesson( | |
{this.title, this.level, this.indicatorValue, this.price, this.content}); | |
} |
OlderNewer