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
@file:Suppress("JAVA_MODULE_DOES_NOT_EXPORT_PACKAGE") | |
package com.lottieworks.app.ui | |
import androidx.compose.runtime.* | |
import androidx.compose.ui.Modifier | |
import androidx.compose.ui.composed | |
import androidx.compose.ui.geometry.Offset | |
import androidx.compose.ui.input.pointer.PointerEventType | |
import androidx.compose.ui.input.pointer.pointerInput | |
import androidx.compose.ui.layout.LayoutCoordinates |
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
package com.alexgwyn.layoutname; | |
import android.content.Context; | |
import android.support.annotation.Nullable; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
/** | |
* A layout inflater that adds the tag of the layout to the views it inflates |
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
import android.content.Context; | |
import android.support.v7.widget.LinearLayoutManager; | |
import android.util.AttributeSet; | |
import android.view.View; | |
public class FullScreenLinearLayoutManager extends LinearLayoutManager { | |
public FullScreenLinearLayoutManager(Context context) { | |
super(context); |