root / src / app / about / about.component.html @ 54800558
Historique | Voir | Annoter | Télécharger (1,74 ko)
1 |
<ActionBar>
|
---|---|
2 |
<!--
|
3 |
Use the NavigationButton as a side-drawer button in Android
|
4 |
because ActionItems are shown on the right side of the ActionBar
|
5 |
-->
|
6 |
<NavigationButton ios:visibility="collapsed" icon="res://menu" (tap)="onDrawerButtonTap()"></NavigationButton> |
7 |
<!--
|
8 |
Use the ActionItem for IOS with position set to left. Using the
|
9 |
NavigationButton as a side-drawer button in iOS is not possible,
|
10 |
because its function is to always navigate back in the application.
|
11 |
-->
|
12 |
<ActionItem icon="res://menu" android:visibility="collapsed" (tap)="onDrawerButtonTap()" |
13 |
ios.position="left"> |
14 |
</ActionItem>
|
15 |
<Label text="À propos de ClicAlbum"></Label> |
16 |
</ActionBar>
|
17 |
|
18 |
<ScrollView>
|
19 |
<GridLayout class="page__content"> |
20 |
<StackLayout row="0" orientation="vertical" padding="10"> |
21 |
<TextView row="1" editable="false" text="ClicAlbum est une application issue d'une vieille idée d'AbulÉdu (nom de code à l'époque : ouistiti) qui permet à un enseignant de créer une sorte d'album photo collaboratif ..." class="label"></TextView> |
22 |
<TextView row="2" editable="false" text="C'est une application libre (GNU/GPLv3) et un service libre (affero GPL) développé par la société CAP-REL et hébergé par l'association AbulÉdu-FR." class="label"></TextView> |
23 |
<TextView row="3" editable="false" text="Vous êtes invités à contribuer au code source et à améliorer cette application." class="label"></TextView> |
24 |
<TextView row="4" editable="false" text="Vous pouvez consulter les conditions générales d'utilisations et les engagements de l'association depuis le site de l'application https://clicalbum.abuledu.net" class="label"></TextView> |
25 |
</StackLayout>
|
26 |
</GridLayout>
|
27 |
</ScrollView>
|