User profile object and tab.

Commit
94d4678e5c4ff3b720b7c4d020661091dffadcb4
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
Changed files
src/MyFitnessTracker/MFTProfile.class.st
index 00000000..b588dc19 000000..100644
@@ -0,0 +1,20 @@
1 Added: Class {
2 Added: #name : #MFTProfile,
3 Added: #superclass : #Object,
4 Added: #instVars : [
5 Added: 'reps'
6 Added: ],
7 Added: #category : #MyFitnessTracker
8 Added: }
9 Added:
10 Added: { #category : #accessing }
11 Added: MFTProfile class >> reps [
12 Added:
13 Added: ^ 8
14 Added: ]
15 Added:
16 Added: { #category : #'as yet unclassified' }
17 Added: MFTProfile class >> rpe [
18 Added:
19 Added: ^ 8
20 Added: ]
src/MyFitnessTracker/MFTProfileTab.class.st
index 00000000..c196baa5 000000..100644
@@ -0,0 +1,18 @@
1 Added: Class {
2 Added: #name : #MFTProfileTab,
3 Added: #superclass : #MFTTab,
4 Added: #category : #'MyFitnessTracker-Components'
5 Added: }
6 Added:
7 Added: { #category : #initialization }
8 Added: MFTProfileTab >> initialize [
9 Added:
10 Added: super initialize.
11 Added: title := 'Profile'
12 Added: ]
13 Added:
14 Added: { #category : #rendering }
15 Added: MFTProfileTab >> renderContentOn: html [
16 Added:
17 Added: html text: 'Welcome!'
18 Added: ]