January 2018 Summaries
2 posts from Ionic
Filter
Month:
Year:
Post Summaries
Back to Blog
Stencil is a JavaScript tool that allows developers to create framework-independent web components using technologies like TypeScript and JSX, providing features such as Virtual DOM, JSX, async rendering, and reactive data-binding. The article illustrates the process of building a custom web component with Stencil, specifically focusing on integrating Cloudinary, a cloud-based media management service that supports various media types and offers powerful APIs for managing media workflows. By leveraging Stencil's APIs and Cloudinary's media transformation capabilities, developers can easily create and manage custom media components, such as videos, that can be integrated into web applications. The tutorial provides a step-by-step guide on creating a video component using Stencil, detailing the component's properties, lifecycle methods, and CSS styling, while emphasizing the ease of use and flexibility offered by Stencil in building standards-compliant web components.
Jan 10, 2018
1,333 words in the original blog post.
Testing geolocation on Android devices can be challenging due to specific quirks of the Android emulator, rather than issues with Ionic or Cordova. The emulator requires manual input of geolocation data through the Extended Controls menu, where users must send coordinates for each position they wish to test using functions like getCurrentPosition or watchPosition. Additionally, to ensure successful geolocation calls, it is crucial to provide necessary options, such as a timeout, which can prevent calls from failing or not returning. For instance, using a 30-second timeout can help ensure these calls function as expected. Understanding and addressing these intricacies is essential for effective geolocation testing on Android.
Jan 06, 2018
341 words in the original blog post.