Skip to content

Instantly share code, notes, and snippets.

@Natgho
Created January 22, 2021 12:31
Show Gist options
  • Save Natgho/3e3f7330ba2eb58a6324f934850f6859 to your computer and use it in GitHub Desktop.
Save Natgho/3e3f7330ba2eb58a6324f934850f6859 to your computer and use it in GitHub Desktop.
thirdPageOfApp.hml
<swiper class="container" index="{{index}}">
<div class="swiper-item first-page">
<div class="first-page-content">
<text class="title">
Konumunuz: {{latlon}}
</text>
<text class="title">
Dogruluk: {{accuracy}}
</text>
<text class="title">
Batarya Durumu: {{battery}}
</text>
<input type="button" class="btn" value="Guncelle" onclick="updateData"/>
</div>
</div>
<div class="swiper-item second-page">
<progress class="progress" type="arc" percent="{{percentage}}"/>
<input type="button" class="progress-btn" value="Baslat" onclick="startProgressBar"/>
<input type="button" class="progress-btn" value="Durdur" onclick="stopProgressBar"/>
</div>
<div class="swiper-item third-page third-page-content">
<text class="todo-upper-title">
Meeting Notes
</text>
<list class="todo-wraper">
<list-item for="{{todolist}}" class="todo-item">
<text class="todo-title">{{$item.title}}</text>
<text class="todo-title">{{$item.date}}</text>
</list-item>
</list>
</div>
<div class="swiper-item fourth-page">
</div>
</swiper>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment